Slide 13
Slide 13 text
CORE
var button2 = document.createElement('button');
button2.setAttribute('type', 'button');
button2.setAttribute('id', 'cyclope');
document.body.replaceChild(button2, button);
console.log(document.getElementById('colossus'));
// null
console.log(document.getElementById('cyclope'));
//