JSFiddle - React, Tailwind, and code Playground

by Ian Sadovy

JavaScript

function labelCreate(chars) {
    var out = [];
    for (var i = 0; i < chars.length; i++) {
                out.push((chars.charCodeAt(i) - 101));
            }
    console.log(out);
}

labelCreate("Flexmonster Proxy support is not available in current edition.");