Files
cs-252/lab13/rabbit.js
2026-04-09 15:57:41 -07:00

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"