const types = { /* ключ : ' что выводить' - отредактируйте сами*/
'undefined': 'undefined',
'object': 'object/oser',
'boolean': 'bool',
'number': 'number',
'string': 'string',
'symbol': 'symbol',
'function': 'func',
}
let current_type = i12.value; // значение input
if (typeof types[typeof current_type] !== "undefined") { // если существует такой ключ в объекте, то
div12.innerHTML = types[typeof i12]+''; // выводим в блоке div12
}else{ // иначе
div12.innerHTML = ''; // очищаем блок div12 - value = ""
}
<input class="some-class" type="hidden" name="url">
// jQuery
$(function ($) {
$('.some-class').val(window.location.href);
});
// js
document.addEventListener("DOMContentLoaded", () => {
let urlInput = document.querySelector('.some-class');
urlInput.value = window.location.href;
});