<script src="../../lib/persist-min.js"></script> //测试一下本地化存储器 var store = new Persist.Store('menu_store');store.set("mytestid",1); var mytestid=store.get("mytestid"); console.log(mytestid);…
题目: 1.找出数字数组中最大的元素(使用Math.max函数)2.转化一个数字数组为function数组(每个function都弹出相应的数字)3.给object数组进行排序(排序条件是每个元素对象的属性个数)4.利用JavaScript打印出Fibonacci数(不使用全局变量)5.实现如下语法的功能:var a = (5).plus(3).minus(6); //26.实现如下语法的功能:var a = add(2)(3)(4); //9 解答:1. var a = [10,1,2,3,4…