亂數取 Array 內的任一值 Share: Facebook 日期: 2015年 9月 26日 分類: JavaScript 筆記一下,怕忘記 亂數取 Array 內的任一值 var portList = ['6001', '6002', '6003', '6004', '6005', '6006', '6007', '6008']; portList.getRandom = function () { return this[Math.floor(Math.random() * this.length)]; }; var port = portList.getRandom(); 『葉狂人』的怕失憶筆記, author