JSFiddle - React, Tailwind, and code Playground
by Kev
HTML
<div id="container">Rarr</div>
CSS
#container {
}
JavaScript
//var declares variables
var str = 'Hello World';
var num = 13;
//assign a string and number value to a seperate variable.
//typeof() method used to find the variable type
alert(typeof(str));
alert(typeof(num));
//document.getElementById('container').innerHTML('hey');