freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-an.../basic-javascript/constructing-strings-with-v...

1.7 KiB

id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244b9 用变量构造字符串 1 https://scrimba.com/c/cqk8rf4 16805 constructing-strings-with-variables

--description--

有时候你需要创建一个类似 Mad Libs(填词游戏)风格的字符串。 通过使用连接运算符(+),你可以插入一个或多个变量来组成一个字符串。

例如:

const ourName = "freeCodeCamp";
const ourStr = "Hello, our name is " + ourName + ", how are you?";

ourStr 值为 Hello, our name is freeCodeCamp, how are you?

--instructions--

把你的名字赋值给变量 myName,然后把变量 myName 插入到字符串 My name isand I am well! 之间,并把连接后的结果赋值给变量 myStr

--hints--

myName 应该是一个至少有 3 个字符的字符串。

assert(typeof myName !== 'undefined' && myName.length > 2);

使用两个 + 操作符创建包含 myNamemyStr 变量。

assert(code.match(/["']\s*\+\s*myName\s*\+\s*["']/g).length > 0);

--seed--

--after-user-code--

(function(){
  var output = [];
  if(typeof myName === 'string') {
    output.push('myName = "' + myName + '"');
  } else {
    output.push('myName is not a string');
  }
  if(typeof myStr === 'string') {
    output.push('myStr = "' + myStr + '"');
  } else {
    output.push('myStr is not a string');
  }
  return output.join('\n');
})();

--seed-contents--

// Only change code below this line
const myName = "";
const myStr = "";

--solutions--

const myName = "Bob";
const myStr = "My name is " + myName + " and I am well!";