Setting VAR from DOM

Set a variable and use it to alert

HTML

<form id="say-form">
<input type="text" id="said" />
</form>

JavaScript

// Every TAG on the page is an ELEMENT
// Every ELEMENT lives in the DOM

// Declare VARIABLES and set them same time
var form  = document.getElementById( 'say-form' );
console.log( form );