JSFiddle - React, Tailwind, and code Playground

by Cody Lindley

HTML

<script src="https://dl.dropboxusercontent.com/u/2026291/firebug-lite-debug.js"></script>

JavaScript

//handy for string, number, and boolean primtive values
console.log(typeof ""); //logs string
console.log(typeof 4); //logs number
console.log(typeof true); //logs boolean
console.log(typeof undefined); //logs undefined

//But buggy when it comes to null
console.log(typeof null); //WHAT? buggy! logs Object, not 'null'