Function - parameters

PHOTO EMBED

Wed May 04 2022 09:03:21 GMT+0000 (Coordinated Universal Time)

Saved by @Luduwanda #javascriptreact

//How functions work with parameters
//Order of paramters matters

function repeat(str, numTimes){
  let result = "";
  for (let i = 0; i < numTimes; i++)
    results += str;
}

console.log(result)
repeat("Good",5)
//Good Good Good Good Good
content_copyCOPY