JSFiddle - React, Tailwind, and code Playground

JavaScript

function test(x) {
    document.write("'" + x + "' = ");
    document.write(parseInt(x));
    document.write("<br>");
}
test("01");
test("02");
test("07");
test("08");
test("09");