It has come to my attention that JavaScript (the programming language that adheres to the specification) is sensitive to case. For instance, variable names:
let myVar = 1
let MyVar = 2 // distinct :)
I have not found any evidence in the official specification suggesting that this is a mandatory rule, so I am uncertain if it was purely a design choice unrelated to the spec.