JavaScript String Methods | JavaScript Tutorial in Hindi #14

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

python, C, C++, Java, JavaScript and Other Cheetsheets [++]:

►Learn in One Video[++]:

►Complete course [playlist]:

Follow Me On Social Media
Comment "#HarryBhai" if you read this 😉😉
Рекомендации по теме
Комментарии
Автор

On your request, I have revamped the channel membership and added more levels.

CodeWithHarry
Автор

14:42 important point: Strings are immutable in JavaScript

sounaksaha
Автор

let fr = "Aditya"
let n = fr.length;
for (let i = 0; i < n; i++){
console.log(fr[i])
}

adpcoolk
Автор

QUICK QUIZ

let name = prompt("Enter Your Name")
For (i =0; i < name.length; i++) {
console.log(name[i])
}
I HAD USED A PROMPT HERE.
I HAD FIRST USED A REGULAR STRING. THANKS TO YOU SIR. FOR YOUR EFFORTS WE ARE LEARNING WITH EASE.

shivtanuray
Автор

This is an adorable Javascript course. My today's Strings method class was terrific.

Ithinktoons
Автор

I completed the quiz, after pausing the video as soon as you told it was a quiz and started doing it, and I got the answer. The code goes as follows:-
let name = "John"
for(let i=0; I<(name.length); i++) {
console.log(name[i]
}
Because of you, I was able to build the logic. Thank you Harry bhaiyya

Melorange
Автор

// Quick Quiz - Print a string using for loop 😇

// Using for loop
for (let i = 0; i < name.length; i++) {
console.log(str[i]);
}

// Using for-in loop
for(n in name) {
console.log(name[n]);
}

// Using for-of loop
for(n of name) {
console.log(n);
}

anti-bug
Автор

13:22
let i;
let name_un = prompt("Enter your name");
for(i=0;i<name_un.length;i++)
{
name_un.concat(name_un[i])
}
console.log(name_un)

parththakkar
Автор

let str="Bidyut"
console.log( `Normal Output is ${str}` )
for ( let i=0; i<str.length; i++ ){
console.log( str[ i ] )
}
console.log( " Done Sir!!! ")

disharoy
Автор

Yes now I feel that my level is going up and that's only bcz of you u r a amazing person itne asani se samjhate ho aap ki sab aram se ho jata hai now I have that confidence if I was stuck in somewhere then I try to solve it myself that's only bcz of u ❤❤

chamanarts
Автор

// QuickQuiz: Use a for loop to print a string
let fr = "Binod"
for (let i = 0; i<fr.length; i++) {
console.log(fr[i])
}

anshumanpandey
Автор

// quick quiz : use a for loop to print a string

let flower = 'tulip';
for (i=0; i<flower.length ; i++){
console.log (flower[i], (i))
}
Genuinely thanks for these quality lessons ❤

learner
Автор

best ever course that i have ever seen on youtube really thanku so much harry bhai

worldofmusic
Автор

Wonderful teaching methodology love it. Really Really appreciated not getting bored in a single video. Thank you very much

asifamin
Автор

let string = 'Chronicles';
let len = string.length;
for (let i = 0; i < len; i++) {
console.log(string[i]);
}

chronicles
Автор

Use a for loop to print a string
let name = "Programmer"
for(let i=0; i<10; i++) {
console.log(name[i])
}

ameerhamza
Автор

let n = "Somnath";

for(let i=0; i<n.length; i++){
console.log(n[i]);
}
console.log("Done");

HeyIMSomnath
Автор

Knowledgeable👍👍👍 Thanks for making this JavaScript course🙏🙏🙏

shivamtiwari
Автор

#Quick Quizze
let pr=prompt("Enter your name")
for(let i=0; i<= pr.length ; i++){
console.log(pr[i])
}

legitincome
Автор

Amazing Explained On STRING in JavaScript....👍👌
Thanks Harry Bhai...😊

mr.hacker....