JSFiddle - React, Tailwind, and code Playground

JavaScript

$(function()
{
    console.log('.height(5.5): ' + 
        $(document.body)
            .append('<div />')
                .height(5.5)
                .height());        
});