基本概念之六

Posted Balian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本概念之六相关的知识,希望对你有一定的参考价值。

方法 - 把数组元素连接成一个字符串
.join() - .join(value) sample .join("*")

 

var landmarks = [];
landmarks.push("My House");
landmarks.push("Front path");
landmarks.push("Flikering streetlamp");
landmarks.push("Leaky fire hydrant");
landmarks.push("Fire station");
landmarks.push("Cat Rescue Center");
landmarks.push("My Old School");
landmarks.push("My friend‘s house");

产生随机数的方法 Math.random();得到0-1之间的一个随机小数
要产生0-10之间的随机小数,只要Math.random()*10
要取得一个长度为15的数组的随机索引,只要Math.floor(Math.random()*15)
Match.floor()只是截取整数部分,不是四舍五入

var randomWords = ["Explosion","Cave","Princess","Pen"];
randomWords[Math.floor(Math.random()*4)];

决策者程序之一

var phrases = [
"That sounds good.",
"Yes, you should definitely do that.",
"I‘m not sure that‘s a great idea.",
"Maybe not today?",
"Computer says no."
];
phrases[Math.floor(Math.random()*5)];

以上是关于基本概念之六的主要内容,如果未能解决你的问题,请参考以下文章

示波器基本原理之六:示波器的基本控制

GWAS基本概念

WEBRTC基本概念

RocketMQ基本概念介绍

Threejs基本概念(六)加载器

GAN的基本概念