Advertisement
Spocoman

01. Rectangle of 10 x 10 Stars

Jan 2nd, 2022
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve() {
  2.     for (let i = 0; i < 10; i++){
  3.         console.log('*'.repeat(10));
  4.     }
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement