为什么slice(-1)输出的是数组第一个值呢

来源:7-21 选定元素slice()

慕婉清0208

2018-03-13 20:30

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Array对象 </title>

<script type="text/javascript">

   var myarr1= ["我","爱","你"];

   document.write(myarr1.slice(1)+"<br>");

   document.write(myarr1.reverse()+"<br>");

   document.write(myarr1.slice(-1)+"<br>");

</script>

</head>

<body>

</body>

</html>



写回答 关注

1回答

  • 帆布
    2018-03-13 21:22:25

    myarr1.reverse()已经将数组顺序调换了,这个时候你的myarr1=["你","爱","我"]

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题