The MDN JavaScript guide states the following when doing a comparison between Java and JavaScript:
Type safety means, for instance, that you can't cast a Java integer into an object reference or access private memory by corrupting Java bytecodes.
Sure, regarding the first part of the above statement, when talking about typing the general concept of type safety revolves around a languages ability to provide some kind of checking that eliminates possible erroneous conditions regarding operations performed with incompatible types (even though the above example is naive considering that in Java you can box primitive int to the reference type Integer).
But, what exactly do they mean by the second part of the statement?
Here there is talk about the JVM's verifier ensuring a level of memory protection - where "arbitary bit patterns cannot be used as an address."
How does the second part of the statement from MDN relate to type safety?