I want to define a delete special character in my js code. But the issue is that when I use chr(46) it gives me syntax error.
Any idea how can I use chr(46) in my JS code?
storageVAR){storageVAR += chr(8);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JS doesn’t have
chr(). Its equivalent isString.fromCharCode(65);(that gives A – just put whatever number you need).