Here is the source code for the prototypal relation shown in above illustration:
// constructor function
function Turtle(name) { this.name = name; }
// the prototype object
var turtleProto = { weight: 150, color: 'green' };
// set the prototype and constructor properties
Turtle.prototype = turtleProto;
Turtle.prototype.constructor = Turtle;
// create t1 by calling constructor function
var t1 = new Turtle('Box');
// create t2 by calling Object.create
var t2 = Object.create(turtleProto);
Select all the statements below that would return true about this prototypal relation between Turtle, turtleProto, t1, and t2: