JSFiddle - React, Tailwind, and code Playground
HTML
<div id='body'>as<div>
CSS
#body{
background:#F3E2A9;
width:400px;
}
JavaScript
var myFirstElement = new Element('h1', {id: 'myFirstElement', html:'Resrult'});
$('body').set('html', 'jajajaja');
$('body').grab(mySecondElement, 'top');
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);