JSFiddle - React, Tailwind, and code Playground

by jquerybyexample

HTML

<br/>
<h2> List of Client side technologies </h2>
<p id="alltech"></p>
<br/>
<h2> List of Client side technologies in sorted order </h2>
<p id="sorted"></p>

CSS

body {
    font-family: Arial;
    margin: 5px;
}

p{
font-size:10pt;
}

JavaScript

$(document).ready(function() {
var list= [ "jQuery", "Dojo", "JavaScript", "Ajax"];
$('#alltech').html(list.join("<br />"));
list = list.sort();
$('#sorted').html(list.join("<br />"));
})