Below Demo With Code
*
** *** **** *****
let n = 5;let string = "";for (let i = 1; i <= n; i++) {for (let j = 0; j < i; j++) {string += "*";}string += "\n";}console.log(string);
Below Demo With Code
*
** *** **** *****
let n = 5;let string = "";for (let i = 1; i <= n; i++) {for (let j = 0; j < i; j++) {string += "*";}string += "\n";}console.log(string);
Hi, I’m Vijay Chauhan, a web developer from India in love with all things internet. Online since 2015.
JavaScript Version of Loan Amortization 1. Loan Calculator Function (Pure JS/TS) export function calculateLoanSchedule ( principal:...
No comments:
Post a Comment