10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
var msg = 'Hello, world!'
|
|
|
|
var obj = {
|
|
test: 'testing',
|
|
toast: function() {
|
|
return 'toasty' + this.test;
|
|
}
|
|
}
|
|
|
|
console.log( "OK stuff happened " + obj.toast() )
|