Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function PrintAll(a, b, c, d, e) { console.log(a, b, c, d, e); } const args = [1, 'b', 3.14, 90, 5, 6, 7]; PrintAll(...args); /* run: 1 b 3.14 90 5 */