So I would like to know what's inside the string for example:
var str = "a"; // Letter
var str = "1"; // Number
var str = "["; // Special
var str = "@"; // Special
var str = "+"; // Special
Is there any pre defined javascript function for this? Otherwise I will make it with regex :)