博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS-基础-04.Math库、数组、表
阅读量:5122 次
发布时间:2019-06-13

本文共 3561 字,大约阅读时间需要 11 分钟。

一、Math工具函数

  1:Math.PI
  2:Math.random 返回 [0, 1)范围的数;
  
// 随机产生 一个[a, b]之前的整数;function random_int (min, max) {    var value = min + (max - min + 1) * Math.random(); // [0, max-min)--> min + [min, max + 1)    value = Math.floor(value);        return value;}
  3:Math.floor(); 向下取整数;
  4:Math.sin, Math.cos, Math.tan 三角函数
  
// 三角函数, sin, cos, tan, 参数是弧度,传入一个角度--> sin;// 90--> Math.PI / 2, 180 Math.PI, 360 --> 2 * Math.PI// 45 --> Math.PI / 4; sin(45) = 根号(2) / 2 == 0.707value = Math.sin(Math.PI / 4);console.log(value);value = Math.cos(Math.PI / 4);console.log(value);value = Math.tan(Math.PI / 4);console.log(value);// 其他的三角函数,可以百度查到function rad2deg(r) {    var degree = r * 180 / Math.PI;    return degree;}function deg2rad(degree) {    var r = (degree / 180) * Math.PI;    return r;}value = rad2deg(Math.PI / 4)console.log(value);// end// 反三角函数,给你一个 正玄值,--> 返回一个弧度// []value = Math.sin(deg2rad(90));value = Math.asin(value);console.log(rad2deg(value));value = Math.cos(deg2rad(90));value = Math.acos(value);console.log(rad2deg(value));value = Math.tan(deg2rad(88));value = Math.atan(value);console.log(rad2deg(value));// end // atan2: (-PI, PI]var r = Math.atan2(1, 1);value = rad2deg(r);console.log(value);r = Math.atan2(-1, -1);value = rad2deg(r);console.log(value);
  5: 角度转弧度,弧度转角度;
  6: 反三角函数Math.asin, Math.acos, Math.atan;
  7: Math.atan2(y, x), 返回一个坐标(y, x)对应的角度;(-PI, PI];
  8: Math.sqrt 开根号;
二、数组的高级使用
  1:array.length; 获取数组的长度;
  2:遍历一个数组; for(var key in array);
// 遍历for (var index in array_data) {    console.log(array_data[index]);}for(var i = 0; i < array_data.length; i ++) {    console.log(array_data[i]);}
  3: 向数组末尾加入一个元素; push
// 加一个元素到数组的末尾array_data.push(100);array_data.push(200);array_data.push(300);array_data.push("Hello javascript");array_data.push({key: "value"});
  4: 查找对象在数组中所对应的索引; indexOf()
  5: 删除数组的某个元素; splice(开始索引,要删除的个数)
var index = array_data.indexOf(500)console.log(index);// 开始的索引, 删除的个数,返回删除的数组, 原来的数组元素少了;var data2 = array_data.splice(2, 2)console.log(data2);console.log(array_data);
  6: 数组的排序;
// 数组的排序array_data = [3, 7, 6, 5];// 比较函数, 传给这个排序的函数,排序的函数,使用这个比较函数的结果,来决定大小,来排序;// 指定的比较大小的方法array_data.sort(function(lhs, rhs) {    if (lhs > rhs) {        return -1; // lhs排在rhs前面    }    else if(lhs < rhs) {        return 1; // rhs排在lhs前面    }    else {        return 0; // lhs == rhs ;    }});console.log(array_data);
  7: 随机 打乱一个数列;
  8:随机的从一堆的数据里面抽取一个值;
function random_array(array_data)  {    array_data.sort(function(lhs, rhs) { // 随机决定他们的大小        if(Math.random() <= 0.5) {            return -1;        }        else {            return 1;        }    })}array_data = [101, 201, 301, 501, 701];random_array(array_data);console.log(array_data);random_array(array_data);console.log(array_data);random_array(array_data);console.log(array_data);value = array_data[0];console.log(value);
三、表的高级使用
  1:遍历一个表; for(key in table)
  2: 删除表中的数据; delete list_data[4];
// 删除掉key的函数delete test_table["age"];delete test_table.name;// endfor (var key in test_table) {    console.log(key, test_table[key]);}
四、字符串对象的高级使用
  1:str.length;属性
  2: str.indexOf();返回子串首次出现的位置;
  3:str.replace(/Microsoft/,"W3School");
  4:toLowerCase, toUpperCase;
var str = "HelloWorld";console.log(str.length);console.log(str.indexOf("or"));// 不会改变原来的字符串;var new_str = str.replace("Hello", "3q");console.log(str, new_str);new_str = str.toLowerCase();console.log(str, new_str);new_str = str.toUpperCase();console.log(str, new_str);str = str.toUpperCase(); // str 指向了这个新产生的字符对象;console.log(str);

 

转载于:https://www.cnblogs.com/orxx/p/10391868.html

你可能感兴趣的文章
VALSE2019总结(4)-主题报告
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
python常用函数
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
数据库3
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>