JSFiddle - React, Tailwind, and code Playground

by scrawlon

JavaScript

var result = 1;
for (var i=0; i<10; i++) {
  result = result * 2;
}
alert(result);