JSFiddle - React, Tailwind, and code Playground

by justinwyllie

JavaScript

var y = 2;
//test for x is it defined?

if ( typeof x == 'undefined'    ) {
  alert('x is undefined');
}


var c = [
	1
]

alert(typeof c);