What is TypeScript?
function handleResize() {
var windowHeight = document.querySelector("html").clientHeight;
var iframe = document.querySelector("iframe[data-name='lesson']");
iframe.style.height = (windowHeight - 210) + "px";
}
window.addEventListener("resize", handleResize);
handleResize();
Complete and Continue