यह जांचने के लिए कि जावास्क्रिप्ट का उपयोग करके स्ट्रिंग में कोई अक्षर अपरकेस या लोअरकेस है, आप बस चार को उसके संबंधित मामले में परिवर्तित कर सकते हैं और परिणाम देख सकते हैं।
उदाहरण
function checkCase(ch) { if (!isNaN(ch * 1)){ return 'ch is numeric'; } else { if (ch == ch.toUpperCase()) { return 'upper case'; } if (ch == ch.toLowerCase()){ return 'lower case'; } } } console.log(checkCase('a')) console.log(checkCase('A')) console.log(checkCase('1'))
आउटपुट
यह आउटपुट देगा -
lower case upper case ch is numeric