hero

Web Tech Docs

A Guide to Advanced Web Technologies

Get Started →

var obj = {
    msg : "Hello world\n",
    showMsg : function() { 
        return this.msg
    }
}
console.log(obj.showMsg());