Contact: aviboots(AT)netvision.net.il
41,393 questions
53,939 answers
573 users
function tripleValues(arr){ return arr.map((num) => num * 3); } console.log(tripleValues([1,2,3,4,5,6])); /* run: [3, 6, 9, 12, 15, 18] */