<input type="hidden" value="user_token">
if (![].includes) {
Array.prototype.includes = String.prototype.includes = function (searchElement, fromIndex) {
fromIndex = fromIndex || 0;
return this.indexOf(searchElement, fromIndex) > -1;
}
}
+1