Strings in Javascript | chai aur

  Рет қаралды 181,621

Chai aur Code

Chai aur Code

Жыл бұрын

Visit chaicode.com for all related materials, community help, source code etc.
github.com/hiteshchoudhary/js...

Пікірлер: 252
@chaiaurcode
@chaiaurcode Жыл бұрын
Thoda late night ho gya aaj but important ye ki video aa gyi. Series to complete hoke hi rhegi 😎
@bhaktibhao-
@bhaktibhao- Жыл бұрын
Thank you Sir par mujhe need aa rahi hai ise video ko main subha dekhu ga ❤️
@aniketjha5946
@aniketjha5946 Жыл бұрын
Thank you for your time sir,, 💞
@RohitChhabirajYadav
@RohitChhabirajYadav Жыл бұрын
Thank u sir❤️😻
@RohitChhabirajYadav
@RohitChhabirajYadav Жыл бұрын
Better✨ than paid video..pw😁
@abhisheksubhashram6910
@abhisheksubhashram6910 Жыл бұрын
Thankyou sir 👍
@TechJourneyWithShivam
@TechJourneyWithShivam 11 ай бұрын
Sir what kind of teacher u r Aapne JS itne ache se padhaya h ki mere class me jinko JS me koi doubt hota h wo mujhse puchte h All credit goes to u sir I just love ur teaching style U r my role model sir
@honblegaurav9917
@honblegaurav9917 Ай бұрын
9:21 pe original value change kyu nhi hui hai? new String to ek object hai na? jo ki non primitive data type hai?
@TechieHeish1-bm2nd
@TechieHeish1-bm2nd Ай бұрын
@@honblegaurav9917 Firstly it's a primitive data type and when assigned, a copy of the value is created and stored in memory (Stack). and secondly you're changing the copy of that not the original one. For more, watch 10th video of this playlist (previous one) stack and heap memory.
@honblegaurav9917
@honblegaurav9917 Ай бұрын
@@TechieHeish1-bm2nd when you define using new its a non primitive data type bro. sir didn't tell this. check internet or stack overflow
@Azharuddin-khan
@Azharuddin-khan Ай бұрын
@@honblegaurav9917 Exactly my question! why did it not changed? Got it! it is non primitive when define using new String(). String is an object
@Async_aman
@Async_aman Жыл бұрын
It is a humble request to all of you, don't skip the ad, hitesh sir is doing so much for us, we can at least see the ad of 30 seconds.
@chaiaurcode
@chaiaurcode Жыл бұрын
Don't worry, app sikh rhe, yahi bht h. Bs share krte rho series ko. Best mai bna dunga
@NiteshMaurya1111
@NiteshMaurya1111 7 ай бұрын
​@@chaiaurcodeThank you so much sir for providing this quality content
@Filmy_world_official
@Filmy_world_official 7 ай бұрын
​@@chaiaurcode ma tum aur aik cup chai from Pakistan. hahaha
@kuldeepgogoi9270
@kuldeepgogoi9270 6 ай бұрын
mera toh premium hau yt mai kiya karu bhai 🙂🙂🙂🙂
@tusharsingh1915
@tusharsingh1915 4 ай бұрын
Bhai uss ad se..bhaiya ko benefit nhi h🥲 agar kuch krna he h toh..share aur subscribe he kr dijiye..
@Arshadkhan-dr6bb
@Arshadkhan-dr6bb Жыл бұрын
Simple, straightforward, to the point what a tutorial, these kind of tutorial remain in mind for long time and strengthen basics which is most necessary
@Sarvesh_Coder
@Sarvesh_Coder Жыл бұрын
I was working on my sideProject meanwhile when i just saw ur video, I paused my work and watched ur video, because I know ur video always add value to me, Thankyou very much sir ji !
@nehabansal370
@nehabansal370 5 ай бұрын
Best Practice: Use String Interpolation for concatenating. let rating = 'one' `Chai aur code is number ${rating} channel` // Chai aur code is number one channel Video to failega hi sir, this is surely going to be the platform for every developer. Thanks again for such a simplified explanation. really enjoying learning.
@samadsiddiqui5925
@samadsiddiqui5925 10 ай бұрын
Keep going on I love your content. And I highly appreciate your hardwork.
@priyanshusonii
@priyanshusonii 11 ай бұрын
It took me whole 5 minutes to find where are backticks on keyboard 😂😂 Afterall amazing tutorial sir >>
@16_kawaldeep_singh2
@16_kawaldeep_singh2 4 ай бұрын
same brother
@ashutosh6740
@ashutosh6740 29 күн бұрын
Coding tere bass ki nahi hai rahne de
@waheedaslam3169
@waheedaslam3169 6 ай бұрын
awesome teaching style and very simple way to teach. thank you very much
@sharjeelcode3290
@sharjeelcode3290 9 ай бұрын
Sir i watched many of youtube tutorials of JS but you Playlist of Js is the best ever ... thank you soo much sir love from pakistan
@babarshabbir2554
@babarshabbir2554 2 ай бұрын
"Master strings in JavaScript with this clear and concise tutorial. Great for beginners!"
@Ashwanikumar-qr2jj
@Ashwanikumar-qr2jj Жыл бұрын
In JavaScript, you cannot traverse from a higher negative index to a lower negative index using the slice() function or any other standard string method. The slice() function, as well as most other string methods, expects the start index to be less than the end index when using positive indices or zero-based indices. When using negative indices, you can only traverse from left to right (from lower negative index to higher negative index) or from right to left (from lower positive index to higher positive index). You cannot reverse the start and end indices when using negative indices with slice(). const myString = "Hello, World!"; const slicedString = myString.slice(-1, -8); console.log(slicedString); // Output: " " const myString = "Hello, World!"; const slicedString = myString.slice(0, 5); console.log(slicedString); // Output: "Hello" const slicedStringNegative = myString.slice(-6, -1); console.log(slicedStringNegative); // Output: "World"
@technicalanil4397
@technicalanil4397 10 ай бұрын
What a beautiful tutorial! Thank you very much sir for your beautiful effort. thanks again. 🙏🙏🙏🙏🙏🙏🙏
@tarunpanwar6983
@tarunpanwar6983 9 ай бұрын
Bhai Bhai Bhai ese av tak kisi n nhi padaya even mene bhut javascript k videos dekhe but you are the best.
@VikashSingh-hc6zo
@VikashSingh-hc6zo 8 ай бұрын
truly sir apke lecture enjoyable hote hai time ka pta ni lagta .......thank you sir
@deepakmishra96
@deepakmishra96 Жыл бұрын
The best video on String I've ever come across.
@YamrajShrestha
@YamrajShrestha 10 ай бұрын
In literal terms, your teaching prowess is nothing short of astounding. Even for someone like me, residing in a remote corner of the world, the wealth of knowledge I can glean from your guidance is boundless.
@Blackfeather7777
@Blackfeather7777 7 ай бұрын
itni angrezi chodke kya sabit karna chahte ho
@yogeshkumarpatil591
@yogeshkumarpatil591 7 ай бұрын
Thank you for making such a beautiful javascript tutorial. Because You teach the actual javascript which is necessary for actual production development need. Very Very thank you. I will share your channel as much as possible to everyone. I really like your teaching style and I aslo need that type of javascript teacher. God bless you.
@viraljain9197
@viraljain9197 8 сағат бұрын
Thank you to Hitesh Sir for making such an awesome video! 🙌🎥 Brushing up on my JS knowledge 🧠
@RahulSharma-wz6yv
@RahulSharma-wz6yv 6 ай бұрын
Okay, I never thought I would have difficulty with "Strings". I already know it, but learning from you gives me peace of mind.
@Intellectualmind4
@Intellectualmind4 Жыл бұрын
I know that you are the best teacher but if you continue like this you will be great teacher 👍👍
@shashankkumarpandey4184
@shashankkumarpandey4184 7 ай бұрын
Interesting lecture, thank you sir
@anuraggupta1008
@anuraggupta1008 5 ай бұрын
learning phase activated thank you sir for amazing deep knowledge concept to teach in easy way
@PriyaSingh-zb5wn
@PriyaSingh-zb5wn 4 ай бұрын
all i can do is thank you for providing these amazing contents💛💛💛
@AnkitKumar-eo1ke
@AnkitKumar-eo1ke 10 ай бұрын
I love the way of your teaching sir ❤❤
@ranjeetuikey87
@ranjeetuikey87 11 ай бұрын
you are a great teacher no doubt sir
@vishalraut265
@vishalraut265 Жыл бұрын
Very practical, Application oriented simple explanation ,This seems different to me ..I hope you will make more useful videos.. -best wishes and_Thank You.
@ritushrivatri6865
@ritushrivatri6865 4 ай бұрын
Thank you Sir for this awesome tutorial :)
@adilaarshad4859
@adilaarshad4859 10 ай бұрын
Thanks for all your efforts🥰
@user-mo1sy5ck7r
@user-mo1sy5ck7r 5 ай бұрын
best Series ALL OVER UNIVERSE, thank you Sir 🙏
@naushadali43
@naushadali43 8 ай бұрын
best javascript video I have ever seen
@babarshabbir2554
@babarshabbir2554 2 ай бұрын
"Master JavaScript strings with this clear, concise tutorial! Covers chai assertions with ease."
@anirudhcodes
@anirudhcodes Жыл бұрын
Best video on strings in javascript 😍
@mrHock86
@mrHock86 2 ай бұрын
Day 3 continuing. Love you sir ji for this amazing content.
@parmjeetmishra2
@parmjeetmishra2 Жыл бұрын
Thank you so much sir for this wonderful lessons.
@ZoneFact_YT
@ZoneFact_YT 28 күн бұрын
Best playlist ever..... Everyne follow sir Hitesh...This person is incredible and down to earth 🩷
@sidra7089
@sidra7089 9 ай бұрын
sir please upload more videos , I really enjoying your content, and I have subscribed the channel
@shresthjain7557
@shresthjain7557 3 ай бұрын
Best playlist ever !
@WaqasKhanDurrani
@WaqasKhanDurrani 17 күн бұрын
Very informative and helpful in 30 days javascript challenge
@faizanarif9799
@faizanarif9799 Жыл бұрын
Hitesh sir on fire 🔥🔥 Back to back videos
@monk.describe
@monk.describe 10 ай бұрын
Old way: Let a = name Let b = age let a = prompt("What is your name"); let b = prompt("What is your age"); document.write("My name is " + a + "and i am " + b + "years old") New way: let a = prompt("What is your name"); let b = prompt("What is your age"); document.write(`Hello my name is ${a} and I'm ${b} years old `); We use ` ` to write complete string and will use ${} to inject variables in it.
@shubhamraj5596
@shubhamraj5596 5 ай бұрын
String interpolation
@content_collage
@content_collage 7 ай бұрын
It seems like sir is standing while recording it . Great Content🙏
@Tech_Life_2.0
@Tech_Life_2.0 Жыл бұрын
Evening sir your teaching way awesome sir🎉
@ApexModi6000
@ApexModi6000 10 ай бұрын
Amazing video sir!!
@Anshuverma4674
@Anshuverma4674 4 ай бұрын
SIR LAJVAAB MAJJA AA GAYA
@adityagoel7376
@adityagoel7376 23 күн бұрын
keep up the good work..
@deepaksinsinwar-ff2ed
@deepaksinsinwar-ff2ed Жыл бұрын
thank you bhaiya bohot easily samajh aarha h🙂🙂😇
@sbCoder
@sbCoder 11 ай бұрын
sir maja to aya, a manna padega
@TradingTales
@TradingTales 5 ай бұрын
Sir replace 1 hee jagah ho raha hai like hitesh me h ko z se replace kr rha hu toh first letter replace ho raha ....how to repalce all the alphabet from string? Same problem with indexof ...1st wala letter ka show kr rha
@Arindam_1729
@Arindam_1729 Жыл бұрын
Thaks sir! Very helpful and informative video
@Veecast247
@Veecast247 Жыл бұрын
Thank you sir for this video it's very helpful for me
@harshkumar7241
@harshkumar7241 Жыл бұрын
sir Good job sir very intersting lecture Thank you so much sir next video i am wating next lecture
@muhammadadil-or3kb
@muhammadadil-or3kb 4 ай бұрын
you are awesome bro
@Deepak_upreti_Vlog
@Deepak_upreti_Vlog 2 ай бұрын
very conceptual video sir
@The_Developer_
@The_Developer_ 10 ай бұрын
really great content
@time7192
@time7192 5 ай бұрын
Your videos are a so lot knowledgeable. Thanks a lot Sir! I'm currently on my journey to learn react which I will start soon after I end this series. Any advice from you or my fellow peers here would be great !
@user-ls5rj7cf3c
@user-ls5rj7cf3c 8 ай бұрын
sir you are great teacher
@ishaangarg2001
@ishaangarg2001 10 ай бұрын
Thankyou so much sir
@jrahul42
@jrahul42 17 күн бұрын
great video
@user-bh6ic4bm3m
@user-bh6ic4bm3m 5 ай бұрын
Behad Behtareen,
@pranjalgogoigaming-1209
@pranjalgogoigaming-1209 8 ай бұрын
best string methods video
@ashutoshshukla5912
@ashutoshshukla5912 2 ай бұрын
Thank you sir❤
@dsouzaedson
@dsouzaedson 9 ай бұрын
This video was very interesting
@talhashehzore
@talhashehzore 11 ай бұрын
Sir ap mazeed bhi courses ly kar aye apka bhot vip hai hindi main ❤❤❤ main regular follow karta ho
@AbhishekKumar-og1hd
@AbhishekKumar-og1hd 10 ай бұрын
thank you so much sir
@tech_channel110
@tech_channel110 9 ай бұрын
very well explained
@heisenberg6461
@heisenberg6461 Жыл бұрын
Thank you sir :) please try to upload more videos in less time
@user-eq3wx6vf4u
@user-eq3wx6vf4u 10 ай бұрын
sir your making Javascript simple
@programmingholic
@programmingholic Жыл бұрын
Strings methods are very important , practiced, Following.
@meetchanchad129
@meetchanchad129 8 ай бұрын
Sir this javascript course is of higher quality than paid course. Do the same, we will support you.
@SamarHayatOfficial
@SamarHayatOfficial 9 ай бұрын
Sir Chai or NEXT JS start krain na please apka method bhot Acha hai feels like premium course 💙💜
@qaiserhameedkhan8147
@qaiserhameedkhan8147 5 ай бұрын
great Content
@imtiaz-kabir
@imtiaz-kabir 2 ай бұрын
Congratulation SIR for #300k subscriber
@deadlylive_gaming7154
@deadlylive_gaming7154 11 ай бұрын
thanks
@jiteshtechbeast
@jiteshtechbeast Жыл бұрын
This man is ❤❤❤
@yogeshchauhan9401
@yogeshchauhan9401 6 ай бұрын
Strings are immutable in JS so those methods return a copy of that string after performing operation.
@Tech_Life_2.0
@Tech_Life_2.0 Жыл бұрын
Pretty easy way sir
@30sunique78
@30sunique78 11 ай бұрын
Code to yaha hai Par Chai 😂 kaha hai Thanks sir padne mai mja aaya
@user-hg1rz6qh5b
@user-hg1rz6qh5b 7 ай бұрын
The question was does the method change the original value of the string ? So the answer is no becasuse the string is a primitive data type so it is stored in stack and it value is copied . So that the reason
@Hassanfar00q99
@Hassanfar00q99 4 ай бұрын
sir slice negative value ko kis base py read krta hai?
@nbugdev
@nbugdev 2 ай бұрын
great sir
@ankushladani496
@ankushladani496 Жыл бұрын
Dhanyawad guruji...🙏
@pardeepsingh8669
@pardeepsingh8669 6 ай бұрын
Kindly consider creating a TypeScript series in Hindi as well
@dpathak15
@dpathak15 7 ай бұрын
Why do we get undefined after declaring a string object?
@adilusman7535
@adilusman7535 2 ай бұрын
at 9:18 sir stack par jab value create create ho to phr value ki copy milti ha but yhan to copy mil rahi ha r yeh ha bhi object type (heap based creation) How ? kindly explain
@Hitesh-sirs-admirer
@Hitesh-sirs-admirer 7 ай бұрын
Doubt : when we use new then only primitive data types become objects? idk what to say but this is only creating small confusion
@BABABENNETT
@BABABENNETT 5 ай бұрын
hitesh sir op
@amazingshorts0369
@amazingshorts0369 3 ай бұрын
Ye to paani hai 😮😮😮😮😮😮😊😊😊😊😊
@iamkmsyed
@iamkmsyed 5 ай бұрын
Sir please explain this topic once more, with more examples
@zahid_9217
@zahid_9217 11 ай бұрын
shukriya sir
@mowglivloggers2003
@mowglivloggers2003 8 ай бұрын
original value not changes as toUpperCase is a function which ulitmately falls in the category of heaps
@BitFire007
@BitFire007 4 ай бұрын
"Chai aur Code deserves all the appreciation for making JavaScript accessible and fun!"
@alizaman8407
@alizaman8407 4 ай бұрын
Give me ur num
@Azadar_110
@Azadar_110 2 ай бұрын
Thanks bhai
@desijargon7460
@desijargon7460 5 ай бұрын
originial value change nhi hua hai cause wo stack memory mai store hai and usmai ek copy ko pass kiya jata hai direct referen ce ko nahi
@vishnuyadav5545
@vishnuyadav5545 5 ай бұрын
@chaiaurcode Const count = ( apna_naam )=>{ return apna_naam.times() } Count(apna_naam) > Count(dusaro_ka_naam) ? "Hitesh bhai 😂" : "aam janta 😂" ; Thankyou Hitesh bhai for you dedication towards teaching us 😊.
@rajdeepchowdhury6767
@rajdeepchowdhury6767 3 ай бұрын
par glass mai to paani tha chai nahi😂😂.......jk, love u sir
@abdul_rab01
@abdul_rab01 19 күн бұрын
Sir I am facing problem while using 2nd time %20 in string, the first one will only replaces with " - ", the 2nd one will remains same as %20.
@qazimtahir
@qazimtahir 3 ай бұрын
Excellent
@alizaman8407
@alizaman8407 4 ай бұрын
Nice
@Sahil-qq2se
@Sahil-qq2se 6 ай бұрын
Sir, but the game name is an object and when to apply uppercase method on that it should change the value....
Number and Maths in Javascript | chai aur #javascript
23:17
Chai aur Code
Рет қаралды 156 М.
Stack and Heap memory in javascript
9:55
Chai aur Code
Рет қаралды 174 М.
Alex hid in the closet #shorts
00:14
Mihdens
Рет қаралды 15 МЛН
Jumping off balcony pulls her tooth! 🫣🦷
01:00
Justin Flom
Рет қаралды 19 МЛН
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 44 МЛН
JavaScript Strings
7:24
Programming with Mosh
Рет қаралды 126 М.
JavaScript in 1 Hour using W3Schools Website | W3Schools JavaScript Tutorial
1:00:53
How does javascript execute code + call stack | chai aur #javascript
26:12
#37 - Most Important String Methods In JavaScript
27:06
Naveen AutomationLabs
Рет қаралды 3,3 М.
Filter map and reduce in javascript | chai aur #javascript
38:46
Chai aur Code
Рет қаралды 176 М.
Date and time in depth in javascript | chair aur #javascript
18:13
Chai aur Code
Рет қаралды 146 М.
Data types of javascript summary | chai aur #javascript
18:02
Chai aur Code
Рет қаралды 159 М.
НЕ БЕРУ APPLE VISION PRO!
0:37
ТЕСЛЕР
Рет қаралды 374 М.
Запрещенный Гаджет для Авто с aliexpress 2
0:50
Тимур Сидельников
Рет қаралды 920 М.