Today, while using Chrome, I encountered something quite unusual.
var foo = ["70036", "70374"]
var status = ["70036", "70374"]
console.log(status[0]);
console.log(foo[0]);
One would expect the console to display:
70036
70036
However, the actual output is:
7
70036
Curious about this, I opened a new tab in Chrome and entered 'status' in the console, only to receive an empty response. It appears that 'status' may be a reserved word, yet I encountered no console error when attempting to reassign it.