Exercises using Strings | Javascript Lecture 15 | Web Development Course

preview_player
Показать описание

Notes of this Lecture:
Рекомендации по теме
Комментарии
Автор

let array =['mumbai', 'goa']
let New =new Array()
Let b = array[0].toString();
let first =b.charAt(0)
Let final = first.toUpperCase()+ b.slice(1);
array[0]= final;

alpesh
Автор

Why JavaScript lecture inserted into java +Dsa playlist ??🤔

_adityaraghuvanshi
Автор

For fixing capatalization code you have said html code was there in description but it was not there, please upload it baiyaa .

ssneka
Автор

why Javascript's lecture is inserted into this playlist?
this is not the way of halting stuffs from Java + DSA

mohammedhamzahansari
Автор

Here is the another approch:--
<script>
const ul');
list.innerHTML='';
let greetings=[
'Happy birthday', 'Happy holi to all '
, 'happy holi to my family', 'Holi mubark ho'
, 'get well soon', 'happy dasehera'
];

for(let i=0;i<greetings.length;i++)
{
let
let
if(str.includes('holi'))
{
listItem.textContent=str;
list.append(listItem);
}
}
</script>

ajayakumarnayak
Автор

Ye JAVA & DSA ka play list hai sir javascript ka video kyu dal diye ...

vipsongs
Автор

q) an array has cities name in upper/lower case mixed, make it in such a way that 1st letter is upper, rest are lower? i heard only this
sol)
<script>
let cities = ["goA", "dElhI", "mUmbAi", "jaIpur"];
let correctArray = [];
//
function correctCase(city) {
let correct = [];
//now we have cities array inside city variable
for (var loop = 0; loop < city.length; loop++) {
let x = city[loop];
let f_half = x.slice(0, 1); //now we have first half, make it uppercase
f_half = f_half.toUpperCase();
let s_half = x.slice(1, x.length); //now we have second half, make it lowercase
s_half = s_half.toLowerCase();
let rightWord = f_half + s_half;
correct.push(rightWord);
}return correct;
}correctArray = correctCase(cities);

</script>

vikasbisht
Автор

Loved this without animation content....please maintain frequency

copilotcoder
Автор

notes link is not working, please fix it

sangameshmathad
Автор

Release your app for all this and make shortlist and playlist that is better for all

spiral
Автор

Didi bhaiya ko bolo ki iit bhu pe video bnaye aur video ke liye research baki college se jyada karna

MarvelEngineer
Автор

Bhaiya java script ka classes, java classes playlist me add kiya

SanjaySanjay-tbir
Автор

Sir ma khud sy youtube sy programming sekhe raha hu kiya esy ma sekhe sakhta hu?

hobbycoding
Автор

Aree bhaiya aapne isse galat playlist m add kar diya hain

pefg
Автор

Bhai koo jnu kai math ki prepration kai liye bata sakta hai kaha karai ???

gautam_editsz
Автор

const LIST = ul"); LIST.innerHTML = " ";
Script tag me a bala code ka use samajme nehiaya.🤔
Koi batado please....

sjana
Автор

Bhaiya append function work nhi Kar rha

laksh.s
Автор

Java ki nahi website development ki playlist add karna hain

pefg
Автор

Sir please rply must my question aur kitna time ma sekh sakhta hu web developement?

hobbycoding
Автор

where is the code? I am not able to find it in description box

swatijain