Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 answers
573 users
const value = 'nodejs'; if (typeof value === 'string' || value instanceof String) { console.log('string'); } else { console.log('not string'); } /* run: string */
console.log(typeof ""); console.log(typeof "nodejs"); console.log(typeof "99"); /* run: string string string */