Question #268

Author: admin
tags: JavaScript  
console.log(
  [0, 5, null, 2].join(',')
);
What will be printed?
'0,5,2'
'5,2'
'0,5,null,2'
'0,5,,2'
Rate the difficulty of the question:
easyhard