var multiarr = [["John",1],["Peter",2],["Lisa",3]]
multiarr[2].pop();
console.log(multiarr);