JSFiddle - React, Tailwind, and code Playground

by Gonzalo

HTML

<div id='body'>hola</div>

CSS

#body{
    background: #F3E2A9;
    width:400px;
}

JavaScript

var myFirstElement  = new Element('h1', {id: 'myFirstElement', html:'Resrult'});
$('body').set('html', 'jajajaja');
$('body').grab(myFirstElement  , 'bottom');
var fruits = ["Banana", "Orange", "Apple", "Mango"];
console.log(fruits);
fruits.splice(fruits.length,1,'go');
console.log(fruits);
fruits.splice(3,1);
console.log(fruits);