val numbers = arrayOf(1, 2, 3, 4, 5) // 删除前 2 个元素, [3, 4, 5] numbers.drop(2).forEach { _console.log(it) }