示例

function splice(nodeBefore){
        let n = nodeBefore.next
        nodeBefore.next = nodeBefore.next.next
        return n
}