博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[TypeScript] Create random integers in a given range
阅读量:5052 次
发布时间:2019-06-12

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

Learn how to create random integers using JavaScript / TypeScript.

 

/** * Returns a random int between * @param start inclusive * @param before exclusive */export function randomInt(start: number, before: number) {  return start + Math.floor(Math.random() * (before - start));}

 

import { randomInt } from './random';test("Should not include ceiling", () => {  const res = [];  for (let index = 0; index < 100; index++) {    res.push(randomInt(0, 5));  }  expect(res.some(x => x === 5)).toBeFalsy();});test("Should include one before ceiling", () => {  const res = [];  for (let index = 0; index < 100; index++) {    res.push(randomInt(0, 5));  }  expect(res.some(x => x === 4)).toBeTruthy();});

 

转载于:https://www.cnblogs.com/Answer1215/p/6793454.html

你可能感兴趣的文章
Cocos2d-x3.0 文件处理
查看>>
全面整理的C++面试题
查看>>
Activity和Fragment生命周期对比
查看>>
查找 EXC_BAD_ACCESS 问题根源的方法
查看>>
日常报错
查看>>
list-style-type -- 定义列表样式
查看>>
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
多变量微积分笔记24——空间线积分
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>