Using javascript console of Google Chrome Developer tool, for example, it will be possible to inspect global object like Math.
You can simple write Math in your console and then return. You will be able to access all properties like E, PI and methods like abs, ceil, etc.
Also String is a global object like Math, but if you try the same operation, the javascript condole output will be different and you will be not able to see Properties and Methods.
In order to see Properties and Methods of String you need to make something like this.
var c = new String("asd")
And then inspect the c objet.
So my question is, can you make an example of very simple objects implemented as String and then as Math?
String.prototypein your console and hitEnter.