print array without brackets javascript

Solutions on MaxInterview for print array without brackets javascript by the best coders in the world

showing results for - "print array without brackets javascript"
Lea
08 Mar 2018
1var numbers = [4,3,2,1];
2console.log(numbers.join(' '));
3
4// 4 3 2 1