菜单
×
×
正确!
练习使用注释描述以下变量的正确数据类型 let length = 16; // @(6) let lastName = "Johnson"; // @(6) const x = { firstName: "John", lastName: "Doe" }; // @(6)
let length = 16; // Number let lastName = "Johnson"; // String const x = { firstName: "John", lastName: "Doe" }; // Object
let length = 16; // NUMBER let lastName = "Johnson"; // STRING const x = { firstName: "John", lastName: "Doe" }; // OBJECT
let length = 16; // number let lastName = "Johnson"; // string const x = { firstName: "John", lastName: "Doe" }; // object
不正确点击这里重新尝试。 正确!下一题 ❯ |
这将重置所有 67 道练习的分数。
您确定要继续吗?