摘要: Javascript考点 内置对象 Math Math.<方法名>(参数); Math.abs(x) 绝对 功能:返回数字 x 的绝对值。 语法:Math.abs(x) console.log(Math.abs(-5)); // 输出 5 console.log(Math.abs(10)); // 阅读全文
posted @ 2024-11-10 21:33 GJ504b 阅读(35) 评论(0) 推荐(0)
摘要: 数组常用函数 //1.find() const arry1 = [5,12,8,130,44]; const found = arry1.find(a => a > 10); // 这一行使用了find方法,它是JavaScript数组对象的一个方法,用于找出第一个满足提供的测试函数的元素。 // 阅读全文
posted @ 2024-11-10 18:41 GJ504b 阅读(42) 评论(0) 推荐(0)