// 求一個數組中的最小值 Math.min.apply(this,[100,2,3])call() apply() 改變做用域,區別:第二個參數不一樣 call(this,name:'hjdj',age:17) 單個寫, apply(this,[{name:'hjdj'},{age:17}])數組形式
求數組中肯定值的索引$.inArray(200,[100,200,300]) 返回1