12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
/*global console*/
|
|
/*jslint this*/
|
|
var name = "Monty";
|
|
var r = new Rabbit("Python");
|
|
|
|
function Rabbit(name) {
|
|
this.name = name;
|
|
}
|
|
|
|
console.log(r.name); // ERROR!!!
|
|
console.log(name); // Prints "Python"
|