toLocaleLowerCase() Function in Javascript

toLocaleLowerCase() function இங்கு நாம் கொடுக்கும் string ஐ host's current locale ஐ பொருத்து lowercase letter களாக மாற்றுகிறது.

string.toLocaleLowerCase()

Note: toLocaleLowerCase() function இங்கு நாம் கொடுக்கும் string ஐ host's current locale ஐ பொருத்து lowercase letter களாக மாற்றுகிறது. இங்கு முக்கியமாக ஒவ்வொரு language ஐ பொருத்து result மாறுபடுகிறது. உதராணமாக Western languages இல் letter 'i' upper cases என்பது letter 'I' ஆகும் ஆனால் Turkish இல் letter 'i' upper cases என்பது letter 'i' ஆகவே இருக்கும்.

Example1

<script>
var input = "I Have Learned Not To Allow Rejection To Move Me";
var res = input.toLocaleLowerCase();
document.writeln(res);
</script>

மேலே உள்ள Example1-ஐ கவனிக்கவும் இங்கு input என்ற variable இல் "I Have Learned Not To Allow Rejection To Move Me" என்ற string value ஆனது store செய்யபட்டுள்ளது.இங்கு input.toLocaleLowerCase() என்ற function பயன்படுத்தபடுகிறது, toLocaleLowerCase() function ஆனது input string ஐ host's current locale ஐ பொருத்து lowercase letter களாக மாற்றுகிறது. எனவே output, i have learned not to allow rejection to move me அனைத்தும் lowercase letter களாக கிடைக்கிறது.

Output:

i have learned not to allow rejection to move me

Example2

<script>
var data = "I Scorched The Earth With My Talent and I Let My Light Shine";
var res = data.toLocaleLowerCase();
document.writeln(res);
</script>

மேலே உள்ள Example2-ஐ கவனிக்கவும் இங்கு data என்ற variable இல் "I Scorched The Earth With My Talent and I Let My Light Shine" என்ற string value ஆனது store செய்யபட்டுள்ளது. இங்கு input.toLocaleLowerCase() என்ற function பயன்படுத்தபடுகிறது, toLocaleLowerCase() function ஆனது data string ஐ host's current locale ஐ பொருத்து lowercase letter களாக மாற்றுகிறது. எனவே output, i scorched the earth with my talent and i let my light shine அனைத்தும் lowercase letter களாக கிடைக்கிறது.

Output:

i scorched the earth with my talent and i let my light shine

Comments