Answers for "sample typescript code"

0

sample typescript code

for (let i: number = 0; i < 5; ++i) {
  let line: string = "";
  for(let j: number = 0; j <= i; ++j) {
    line += "*";
  }
  console.log(line);
}
/*Simple for loop that gives this output:
*
**
***
****
*****
*/
Posted by: Guest on September-28-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language