DEV Community

Discussion on: How to build a PWA from scratch with HTML, CSS and JavaScript ?

 
unspokenkash profile image
Accha thik ha

Thank you so much.

Thread Thread
 
unspokenkash profile image
Accha thik ha

Sir, I wanted to ask you if we can print the table of a number, e.g =7
Without using for loop. Only by using higher order functions in js

Thread Thread
 
unspokenkash profile image
Accha thik ha

let numbers = [7];
const x = numbers.map(number => number* (for(i=0;i<10;i++));

Somewhat in this manner?