Put Your Name AND UANetID on the Exam!    

  Random Javascript Functions and Properties
  ==========================================
  window.addEventListener('eventName', callback);
  window.alert('msg text');
  window.close();
  window.confirm('msg text');
  
  element.attributes
  element.innerHTML
  element.parentNode
  element.style.propertyname = "newCSSvalue";
  element.textContent  

  element.appendChild(newElementObject);
  element.classList.add("newClassName");
  element.removeChild(elementToRemove);
  
  console.log(msg);
  console.trace();
  console.warn(msg);

  document.body
  document.title

  document.createElement('elementType');
  document.getElementsByClassName('className');
  document.getElementsByTagName('tagName');
  document.getElementById('idName');
  
  Random PHP Functions
  ====================
  array_keys()
  array_pop()
  array_push()
  array_shift()
  echo
  empty()
  error_reporting()
  fgets()
  file_get_contents()
  fopen()
  gettype()
  ini_set()
  is_int()
  is_numeric()
  isset()
  json_decode()
  json_encode()
  print_r()
  printf()
  sort()
  strlen()
  strtoupper()
  time()
  trim()
  ucfirst()
  var_dump()

  Built-in Classes
  ================
  StdClass()
  PDO()
  $PDO->prepare()
  $PDOStatement->execute()
  $PDOStatement->fetchAll()
  $PDOStatement->fetchObject()