JSFiddle - React, Tailwind, and code Playground

JavaScript

//press ctrl + shift + i to open developer tool
var i = 4;


//debugger will cuase execution pause
debugger

//Press F10 to move to next statment    
i = i + 5;    


alert("Value of i = " + i)