I am playing with some newer features of JavaScript such as Array.forEach (v.1.6).
I understand that in live code we should use feature detection, as explained here: To tell Javascript version of your browser So, basically something like:
typeof Array.prototype.forEach == 'function'
However, is there some way (e.g. website) , that shows which version of JavaScript is supported by different browsers? I basically want to check if a given version is already widely adopted by browsers or not.
Somethin like this for JavaScript support would be exactly what I am looking for.