In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article introduces the relevant knowledge of "the access method of js one-dimensional array". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
1. To access an array is to access the array elements. You can use the array name [subscript expression] to access, read and write the array.
2. A subscript expression is an expression whose value is a non-negative integer.
For example, above
Delete a [1]
Is to use the delete keyword to delete the element in the an array with the subscript 1 (that is, delete the second element).
And:
Var a = []; / / empty array a [0] = 1tera [2] = "hello"
That is, assign values to the elements in the an array with subscript 0 and 2, respectively, and elements with subscript 1 are undefined if they are not assigned. We can also use this form when we want to output specified array elements
Console.log (a [0]); / / read the first element and the return value is 1console.log (a [1]); / / read the second element with the return value of undefinedconsole.log (a [2]); / / read the third element with the return value of hello "access method of the js one-dimensional array". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.