Javascript数组是一个变量, 一次包含多个值。使用索引访问第一个和最后一个元素, 使用索引0访问第一个值, 并且可以通过length属性访问最后一个元素, 该属性的值比最高数组索引多一个。
程序访问数组中的第一项和最后一项:
范例1:
<
script>
// array
let s=[3, 2, 3, 4, 5];
function Gfg() {
// storing the first item in a variable
let f=s[0];
// storing the last item
let l=s[s.length-1];
// printing output to screen
document.write( "First element is " + f);
document.write( "<
br>
Last element is " + l);
}
Gfg();
// calling the function
<
/script>
输出如下:
First element is 3 Last element is 5
【使用JavaScript获取数组中的第一项和最后一项】范例2:
<
script>
// simple array
let s= [ "Geeks" , "for" , "geeks" , "computer" , "science" ];
function Gfg() {
// first item of the array
let f=s[0];
// last item of the array
let l=s[s.length-1];
// printing the output to screen
document.write( "First element is " + f);
document.write( "<
br>
Last element is " + l);
}
Gfg();
// calling the function
<
/script>
输出如下:
First element is GeeksLast element is science
推荐阅读
- ER图中的递归关系简要介绍
- sprinklr面试经验分享|S5(校园内–产品工程师的FTE)
- JavaScript Instanceof运算符如何使用(代码示例)
- 雨林木风windows10专业版镜像介绍
- 雨林木风win764纯净版介绍
- 联想win7旗舰版64位介绍
- 深度windows7 64位纯净版介绍
- 联想win7旗舰版32位gho介绍
- 系统之家32为纯净版介绍