Adds the value to the end of the list
val
LinkedList<int> l = {3, 4, 5}; l.pushBack(6); //l now contains {3, 4, 5, 6}