Quirk single-line โซลูชั่นทุกวัน
ค่าในอาร์เรย์เป็นแบบสุ่มทั้งหมดดังนั้นเมื่อคุณจะใช้ตัวอย่างข้อมูลนี้จะแตกต่างออกไป
อาร์เรย์ (ความยาว 10) ที่มีอักขระสุ่มเป็นตัวพิมพ์เล็ก
Array.apply(null, Array(10)).map(function() { return String.fromCharCode(Math.floor(Math.random() * (123 - 97) + 97)); })
['k', 'a', 'x', 'y', 'n', 'w', 'm', 'q', 'b', 'j']
อาร์เรย์ (ความยาว 10) ที่มีตัวเลขจำนวนเต็มสุ่มตั้งแต่ 0 ถึง 99
Array.apply(null, Array(10)).map(function() { return Math.floor(Math.random() * 100 % 100); })
[86, 77, 83, 27, 79, 96, 67, 75, 52, 21]
วันที่สุ่มอาร์เรย์ (ตั้งแต่ 10 ปีก่อนถึงปัจจุบัน)
Array.apply(null, Array(10)).map(function() { return new Date((new Date()).getFullYear() - Math.floor(Math.random() * 10), Math.floor(Math.random() * 12), Math.floor(Math.random() * 29) )})
[2008-08-22T21: 00: 00.000Z, 2007-07-17T21: 00: 00.000Z, 2015-05-05T21
: 00: 00.000Z, 2011-06-14T21: 00: 00.000Z,
2009-07-23T21 : 00: 00.000Z, 2009-11-13T22: 00: 00.000Z,
2010-05-09T21: 00: 00.000Z, 2008-01-05T22: 00: 00.000Z,
2016-05-06T21: 00: 00.000Z, 2014-08-06T21: 00: 00.000Z]
สตริงสุ่มอาร์เรย์ (ความยาว 10)
Array.apply(null, Array(10)).map(function() { return Array.apply(null, Array(Math.floor(Math.random() * 10 + 3))).map(function() { return String.fromCharCode(Math.floor(Math.random() * (123 - 97) + 97)); }).join('') });
['cubjjhaph', 'bmwy', 'alhobd', 'ceud', 'tnyullyn', 'vpkdflarhnf', 'hvg', 'arazuln', 'jzz', 'cyx']
สิ่งที่มีประโยชน์อื่น ๆ ที่คุณสามารถพบได้ที่นี่https://github.com/setivolkylany/nodejs-utils/blob/master/utils/faker.js