1. 首页
  2. 网络技术
  3. 系统集成
  4. js Array对象的扩展函数代码

js Array对象的扩展函数代码

上传者: 2020-12-02 22:30:59上传 PDF文件 44KB 热度 20次
使用 代码如下:[removed]var isNumeric = function(x) { // returns true if x is numeric and false if it is not. var RegExp = /^(-)?(\d*)(\.?)(\d*)$/; return String(x).match(RegExp);}var myArray = [1,’two’,3,’four’,5,’six’,7,’eight’,9,’ten’];var oddArray=myArray.filter(isNumeric);
用户评论