The University of Arizona
Exam Notes
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);

string.toUpperCase();
string.toLowerCase();

console.log(msg);
console.trace();
console.warn(msg);

document.body
document.title

document.createElement('elementType');
document.getElementsByClassName('className');
document.getElementsByTagName('tagName');
document.getElementById('idName');

// Notes Page
myArray = ["one", "two", "three"];

Problem 10 - Option B should read: "I have your Private Key, and you have your corresponding Public Key."