.github
api-server
client
config
curriculum
challenges
_meta
arabic
chinese
01-responsive-web-design
02-javascript-algorithms-and-data-structures
basic-algorithm-scripting
basic-data-structures
basic-javascript
debugging
es6
compare-scopes-of-the-var-and-let-keywords.chinese.md
create-an-export-fallback-with-export-default.chinese.md
create-strings-using-template-literals.chinese.md
declare-a-read-only-variable-with-the-const-keyword.chinese.md
explore-differences-between-the-var-and-let-keywords.chinese.md
import-a-default-export.chinese.md
mutate-an-array-declared-with-const.chinese.md
prevent-object-mutation.chinese.md
set-default-parameters-for-your-functions.chinese.md
understand-the-differences-between-import-and-require.chinese.md
use--to-import-everything-from-a-file.chinese.md
use-arrow-functions-to-write-concise-anonymous-functions.chinese.md
use-class-syntax-to-define-a-constructor-function.chinese.md
use-destructuring-assignment-to-assign-variables-from-arrays.chinese.md
use-destructuring-assignment-to-assign-variables-from-nested-objects.chinese.md
use-destructuring-assignment-to-assign-variables-from-objects.chinese.md
use-destructuring-assignment-to-pass-an-object-as-a-functions-parameters.chinese.md
use-destructuring-assignment-with-the-rest-operator-to-reassign-array-elements.chinese.md
use-export-to-reuse-a-code-block.chinese.md
use-getters-and-setters-to-control-access-to-an-object.chinese.md
use-the-rest-operator-with-function-parameters.chinese.md
use-the-spread-operator-to-evaluate-arrays-in-place.chinese.md
write-arrow-functions-with-parameters.chinese.md
write-concise-declarative-functions-with-es6.chinese.md
write-concise-object-literal-declarations-using-simple-fields.chinese.md
write-higher-order-arrow-functions.chinese.md
functional-programming
intermediate-algorithm-scripting
javascript-algorithms-and-data-structures-projects
object-oriented-programming
regular-expressions
03-front-end-libraries
04-data-visualization
05-apis-and-microservices
06-information-security-and-quality-assurance
08-coding-interview-prep
09-certificates
english
portuguese
russian
spanish
schema
test
.babelrc
.editorconfig
.npmignore
.travis.yml
CHANGELOG.md
LICENSE.md
commitizen.config.js
commitlint.config.js
create-challenge-bundle.js
getChallenges.js
gulpfile.js
index.js
lib.js
md-translation.js
package-entry.js
package-lock.json
package.json
utils.js
docs
search-indexing
tools
utils
.editorconfig
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.gitpod.yml
.node-inspectorrc
.prettierignore
.prettierrc
.snyk
.travis.yml
.vcmrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile.tests
LICENSE.md
README.md
SECURITY.md
change_volumes_owner.sh
docker-compose-shared.yml
docker-compose.tests.yml
docker-compose.yml
lerna.json
package-lock.json
package.json
sample.env
2.0 KiB
2.0 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7b88367417b2b2512b44 | Write Arrow Functions with Parameters | 1 | 用参数写箭头函数 |
Description
//将输入值加倍并返回您也可以将多个参数传递给箭头函数。
const doubler =(item)=> item * 2;
Instructions
myConcat
函数,该函数将arr2
内容追加到arr1
以便该函数使用箭头函数语法。 Tests
tests:
- text: 用户确实替换了<code>var</code>关键字。
testString: 'getUserInput => assert(!getUserInput("index").match(/var/g), "User did replace <code>var</code> keyword.");'
- text: <code>myConcat</code>应该是一个常量变量(使用<code>const</code> )。
testString: 'getUserInput => assert(getUserInput("index").match(/const\s+myConcat/g), "<code>myConcat</code> should be a constant variable (by using <code>const</code>).");'
- text: <code>myConcat</code>应该是一个函数
testString: 'assert(typeof myConcat === "function", "<code>myConcat</code> should be a function");'
- text: <code>myConcat()</code>返回正确的<code>array</code>
testString: 'assert(() => { const a = myConcat([1], [2]); return a[0] == 1 && a[1] == 2; }, "<code>myConcat()</code> returns the correct <code>array</code>");'
- text: <code>function</code>关键字未使用。
testString: 'getUserInput => assert(!getUserInput("index").match(/function/g), "<code>function</code> keyword was not used.");'
Challenge Seed
var myConcat = function(arr1, arr2) {
"use strict";
return arr1.concat(arr2);
};
// test your code
console.log(myConcat([1, 2], [3, 4, 5]));
Solution
// solution required