Answers for "a simple typescript setup"

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
-2

typescript getting started

//Learn TypeScript in 50 mins
https://www.youtube.com/watch?v=WBPrJSw7yQA
Posted by: Guest on August-05-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language