Develop工具库Lodash数组sample本页总览sample2024年06月17日柏拉文越努力,越幸运 一、认识 从 collection(集合)中获得一个随机元素。 二、语法 三、实现 function sample(array) { const length = array == null ? 0 : array.length; return length ? array[Math.floor(Math.random() * length)] : undefined;}console.log(sample([1, 2, 3, 4]));