function prepend(arr, item) {
    return [item].concat(arr)    // 合并数组 这应该是最懒的写法了吧?
}