function makingStar(a, b) {
let star = '';
for(let i = 0; i < b; i++) {
for(let j = 0; j < a; j++) {
star = star + '*';
}
console.log(star);
star = '';
}
}
function makingStar(a, b) {
let star = '';
for(let i = 0; i < b; i++) {
for(let j = 0; j < a; j++) {
star = star + '*';
}
console.log(star);
star = '';
}
}