planetproto
Version:
A Workshop for understanding JavaScript prototypes
15 lines (11 loc) • 398 B
JavaScript
// -> Define an object called 'Robot'
// -> Define a method called 'new' in Robot
// -> When Robot.new is called it should return a new object with Robot as its prototype
// e.g. var robby = Robot.new();
// Robot should be the prototype of robby
__
// ------------------------------------------------
// Common JS exports for verification, don't modify
module.exports = {
Robot: Robot
}