JSFiddle - React, Tailwind, and code Playground

by kentaromiura

JavaScript

// the follow should be something like var url = location.href;
var url="http://site_name/controller/[action]/[letter:A]/page:1",
    tokens = url.split('/'),
    lastToken = tokens[tokens.length-1],
    nameValue = lastToken.split(":");

document.write(nameValue.length == 2, ' ', nameValue.length == 2 && nameValue[1]);