Test your skills: Arrays - Learn web development 编辑
This aim of this skill test is to assess whether you've understood our Arrays article.
Note: You can try out solutions in the interactive editors below, however it may be helpful to download the code and use an online tool such as CodePen, jsFiddle, or Glitch to work on the tasks.
If you get stuck, then ask us for help — see the Assessment or further help section at the bottom of this page.
Note: In the examples below, if there is an error in your code it will be outputted into the results panel on the page, to help you try to figure out the answer (or into the browser's JavaScript console, in the case of the downloadable version).
Arrays 1
Let's start off with some basic array practice. In this task we'd like you to create an array of three items, stored inside a variable called myArray
. The items can be anything you want — how about your favourite foods or bands?
Next, modify the first two items in the array using simple bracket notation and assignment. Then add a new item to the beginning of the array.
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Arrays 2
Now let's move on to another task. Here you are provided with a string to work with. We'd like you to:
- Convert the string into an array, removing the
+
characters in the process. Save the result in a variable calledmyArray
. - Store the length of the array in a variable called
arrayLength
. - Store the last item in the array in a variable called
lastItem
.
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Arrays 3
For this final array task, we provide you with a starting array, and you will work in somewhat the opposite direction. You need to:
- Remove the last item in the array.
- Add two new names to the end of the array.
- Go over each item in the array and add its index number after the name inside parentheses, for example
Ryu (0)
. Note that we don't teach how to do this in the Arrays article, so you'll have to do some research. - Finally, join the array items together in a single string called
myString
, with a separator of "-
".
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Assessment or further help
You can practice these examples in the Interactive Editors above.
If you would like your work assessed, or are stuck and want to ask for help:
- Put your work into an online shareable editor such as CodePen, jsFiddle, or Glitch. You can write the code yourself, or use the starting point files linked to in the above sections.
- Write a post asking for assessment and/or help at the MDN Discourse forum Learning category. Your post should include:
- A descriptive title such as "Assessment wanted for Variables 1 skill test".
- Details of what you have already tried, and what you would like us to do, e.g. if you are stuck and need help, or want an assessment.
- A link to the example you want assessed or need help with, in an online shareable editor (as mentioned in step 1 above). This is a good practice to get into — it's very hard to help someone with a coding problem if you can't see their code.
- A link to the actual task or assessment page, so we can find the question you want help with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论