JSFiddle - React, Tailwind, and code Playground
by oceog
JavaScript
var hostnameStr = 'http://myhost.ru',
pathStr = '/brands',
brandStr = '/BlackBerry';
console.log(hostnameStr); // 'http://myhost.ru'
console.log(pathStr); // '/brands'
console.log(brandStr); // '/BlackBerry'
alert(hostnameStr + pathStr + brandStr);
document.location = hostnameStr + pathStr + brandStr;