export function RandomListNode(x) { this.label = x this.next = null this.random = null } export function Clone(pHead) { console.log(pHead) }