在 JavaScript 中,你可以使用以下任何一种方法来清除数组中的所有数据: 设置数组长度为0: let arr = [1, 2, 3, 4, 5]; arr.length = 0; 使用Array.prototype.splice()方法: 该方法会改变原始数组,..