Javascript RemovelastChild

function removeLastChild(div) {
  div.removeChild(div.lastChild);
}
George_agg