js笔记
Posted 坚持不懈,才能出彩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js笔记相关的知识,希望对你有一定的参考价值。
1.克隆对象
克隆数组:
var country=[‘中国‘,‘美国‘]; var copyCountry=country.slice(0);
克隆对象:
var people={sex:‘man‘,age:4}; var me=JSON.parse(JSON.stringify(people));
2.随机数
从数组中随机取n个不重复的元素
function getRandomArrayElements(arr, count) { var shuffled = arr.slice(0), i = arr.length, min = i - count, temp, index; while (i-- > min) { index = Math.floor((i + 1) * Math.random()); temp = shuffled[index]; shuffled[index] = shuffled[i]; shuffled[i] = temp; } return shuffled.slice(min); }
以上是关于js笔记的主要内容,如果未能解决你的问题,请参考以下文章
谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js