Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
function convert_into_real_array() { const arr = Array.from(arguments); console.log(arr); } convert_into_real_array(1, 2, 3, 4); /* run: [ 1, 2, 3, 4 ] */