I am really confused about the JavaScript COMMA. Here, I have a variable that is assigned to two values inside of parenthesis. The two values are separated by a JavaScript COMMA. When console.log the variable, I only get back the second value.
For Example:
var datum = ('NAD83', 'NAD84');
console.log(datum) // => NAD84
Why does this happen?