What does the code snippet to the right output by console.log?
console.log
console.log(Math.min()) console.log(Math.max()) console.log(Math.min(1)) console.log(Math.max(1,2)) console.log(Math.min([1,2,3]))
Source Fromopen in new window