* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
2.4 KiB
2.4 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7b8b367417b2b2512b53 | Use class Syntax to Define a Constructor Function | 1 | 使用类语法定义构造函数 |
Description
class
语法只是一种语法,而不是面向对象范例的完整的基于类的实现,不像Java,Python或Ruby等语言。在ES5中,我们通常定义一个构造函数function,并使用new
关键字实例化一个对象。 var SpaceShuttle = function(targetPlanet){类语法只是替换构造函数创建:
this.targetPlanet = targetPlanet;
}
var zeus = new SpaceShuttle('Jupiter');
class SpaceShuttle {请注意,
构造(targetPlanet){
this.targetPlanet = targetPlanet;
}
}
const zeus = new SpaceShuttle('Jupiter');
class
关键字声明了一个新函数,并添加了一个构造函数,该函数将在调用new
调用 - 以创建新对象。 Instructions
class
关键字并编写适当的构造函数来创建Vegetable
类。使用Vegetable
可以创建具有属性name
的蔬菜对象,以传递给构造函数。 Tests
tests:
- text: <code>Vegetable</code>应该是一个<code>class</code>具有限定<code>constructor</code>方法。
testString: assert(typeof Vegetable === 'function' && typeof Vegetable.constructor === 'function');
- text: <code>class</code>关键字。
testString: assert(code.match(/class/g));
- text: <code>Vegetable</code>可以实例化。
testString: assert(() => {const a = new Vegetable("apple"); return typeof a === 'object';});
- text: <code>carrot.name</code>应该返回<code>carrot</code> 。
testString: assert(carrot.name=='carrot');
Challenge Seed
function makeClass() {
"use strict";
/* Alter code below this line */
/* Alter code above this line */
return Vegetable;
}
const Vegetable = makeClass();
const carrot = new Vegetable('carrot');
console.log(carrot.name); // => should be 'carrot'
Solution
// solution required