Contact: aviboots(AT)netvision.net.il
39,938 questions
51,875 answers
573 users
const str1: string = "typescript"; const str2: string = "TYPESCRIPT"; console.log(str1.toUpperCase() === str2.toUpperCase()); /* run: true */
const str1: string = "typescript"; const str2: string = "TYPESCRIPT"; console.log(str1.toLowerCase() === str2.toLowerCase()); /* run: true */