JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

<div>
   <div>
   	<div>Title</div>
    <div>some content</div>
   </div>
   <div>
   	<div>Title</div>
    <div>some content</div>
   </div>
   <div>
   	<div>Title</div>
    <div>some content</div>
   </div>
</div>

CSS

/*
create a responsive 3 column layout using flex on desktop and 1 column layout in mobiles
*/

JavaScript

/*
* Implement 
*	 [1,2,3,4].toMyReverse() // [4,3,2,1] 
*
*/


console.log([1,2,3,4].toMyReverse())