var qwerty = document.getElementById("hello");
) и последующей попытке привязке события ((qwerty.onclick = function() { }
) возникает ошибкаUncaught TypeError: Cannot set property 'onclick' of null
Т.е., в переменной хранится null<button id="hello">lorem impsum</button>