JSFiddle - React, Tailwind, and code Playground

by Matthew Day

JavaScript

function doubleInt(someInt) {
	return someInt >> 1;
}

console.log(doubleInt(99));