Bhai Tora Explain Kiya Kare Detail Se Bataya Kare Khud Kar Lete Hi Hame Samaj Nahi Ata hai Mene Apki Sare Videos Dekli Hai html / CSS, Ka Lekin JS ki Videos Samaj Nahi Ati Bar Bar Dekh Raha Ho Lekin Samaj Nahi ARaha Hai Aor HTML / CSS, ki videos Barya Ti LEkin JAva Samaj Nahi Araha Hai Please Tora Detail Se Bataye 🥺
I can literally say to those who r very new here, trust me, he worked so hard to set those complete series with deep explanations for each and every concept. Going with his courses is genuinely worth the investment, as they provide a comprehensive and engaging learning experience. Amazing job dude!
Harry sir, I've watching your videos when I was studying in class 9th and now I am in a university doing BCA with the knowledge you provided and everything in coding I'm able to digest easily because of you. I thank you from the bottom of my heart for creating such a useful channel with thousands of informative videos. HATS OFF FOR YOU SIR AND MAY ALLAH BE WITH YOU IN EVERY SITUATION FOR THE GOOD. 🌙🌟
00:01 Arrays in JavaScript are used to store multiple values within one name. 01:57 JavaScript Arrays and accessing their length 05:36 JavaScript arrays can be mutated to change their values. 07:39 The video discusses converting an array to a string using the toString method, joining array elements using the join method, and removing the last element of an array using the pop method. 11:38 The video discusses JavaScript arrays and key operations like deleting elements and concatenating arrays. 14:02 The slice function in JavaScript arrays helps in removing and adding elements in a specific range of indexes. 17:45 JavaScript Arrays and different types of loops 19:30 JavaScript Arrays basics 23:17 Understanding JavaScript map function and its usage 25:07 The 'greaterThan' function returns true if the element is greater than 7, else it returns false. 28:38 Reduce is not frequently used compared to map and filter. 30:24 RUclips video summary on JavaScript Arrays
shift jo hota hai wo pop ka bhai hota hai aur unshift jo hota hai wo push ka bhai hota hai what a way of learning harry bhai I am truly inspire from you respect from pakistan
shift() is the bhai of pop() which removes the first element of an array and returns the new array. Whereas unshift() is the bhai of push() which adds an element to the beginning of an array and returns the new array.
this video took my 4-5 hours to learn completely, most difficult concept [for me] finally understood. Thanks Harry Bhai, you are really hero. My all blessing for you.
Congratulation harry bhai for 5 mil🎉. I am following your sigma web development course and i have completed 33 lecs. My experience so far has been great. Thank you for bringing this free course❤. #SigmaBatchOP #HarryBhai
10:05 yes Harry bhai "Harry " push ho jayenga shift () jo hota hai wo pop() ka bhai hota hai unshift() jo hota hai wo push() ka bhai hota hai #SigmaBatchOp #JavascriptOp
ye jo shift hota hai na vo pop ka brotherhood hota hai and ye jo unshift hota hai na vo push ka bhai hota brotherhood hota hai wow respect sir love you
Congratulations Harry Bhai for achieving 5 Million Subscribers. 🎉🎉🎉 Next Step is hit to 10million subscribe. I hope that will be done in next 1 or 2 years or more less time🎉🎉🎉🎉 5 Million Subscribers ❤ Love Coding....... and This Channel ❤
Push() - Add an element from end in the array. Pop() - Remove an element from the end in the array. unshift() - Add an element at start in the array. shift() - Remove an element at start from the array. --------------- Push - unshift Pop - shift
I thought I was last in this race, I never being consistent in this course but trust me whenever I spent time on this course I never regret. JavaScript OP
shift and unshift operations beginning mein perform karte haii ye jo shift hai na woh pop ka bhai hota hai.. ye jo unshift hai na wohh push ka bhai hota haiii thank youu Harry bhaii❤
push - add an element in the back of array pop - removes element from the back of array shift - removes element from the front of array (pop ka bhai) unshift - add one element in the front of array (push ka bhai)
shift() jo hota hai wo pop() ka bhai hota hai and ye unshift() push() ka bhai hota hai. shift() - removes first value from array. (0th index) pop() - removes last value from array. (n-1 th index) unshift() - adds value at 0th index of array. push() - adds value at n-1 index of array. (M...IMP)
pop = delete last element of array push= for enter an element at the end of the array shift = for deleting first element of array unshift = for enter an element at the first position of an array
jo shift() hota hai, wo pop() ka bhai hai because dono elements ko remove krne me use hote hain array ke andr and jo unshift() hota hai wo push() ka bhai hota hai because ye dono elements ko array me add krne ke liye use hote hain.
ye jo shift hota hai voh pop ka bhai hota hai... ye jo unshift hota hai voh push ka bhai hota hai... vote for android dev course please this sigma course is OP java script is also OP
10:15 Yes it will Show in Array. ye jo shift hota hai voh pop ka bhai hota hai... ye jo unshift hota hai voh push ka bhai hota hai... #sigmabatchop #javascriptop
Pop jo hai wo shift ka bhai hota hai Pop last wly ko nikalta hai , or shift start wly ko nikalta hai Push jo hai wo unshift ka bhai hota hai . Push last main add krta hai or Unshift start main add krta hai
push() ---> add to end ishka bhai unshift() ---> add to start --------------------------------- pop() ---> delete from end & return ishka bhai shift() ---> delete from start & return
pop() : used to remove last element push() : used to add an element from last. shift() : used to delete an element from front. unshift() : used to add an element from front, pop aur shift bhai bhai. push and unshift bhai bhai
11:12 Unshift() is brother of push() & shift() is the brother of pop() , , shift() Take out the first value from the Array whereas the pop take out the value from the last of the Array And Push() is used to insert/put the value at the last of the Array Whereas unshift is used to insert/put the value at the beginning/first of the Array.
pop-removes last element shift-removes first element ----> pop aur shift bhai bhai unshift-add first element push-add last element -----> unshift aur push bhai bhai
Arrays in JavaScript are used to store multiple values in a single variable. They can hold different data types and are mutable, unlike strings. Arrays are commonly used in web development, such as in React components, to display repeated content. Key array methods include toString, join, pop, push, shift, unshift, concat, sort, splice, and slice. Key moments: 00:05 An array in JavaScript allows storing multiple data types under one name, enabling flexibility in web development for tasks like creating components in React. -Arrays are versatile in JavaScript, accommodating various data types like numbers, strings, and objects, providing a convenient way to manage and access multiple values efficiently. -Arrays are commonly used in web development, especially in React components, where they help organize and display repetitive data like blog articles in a structured manner. -Arrays in JavaScript are mutable, allowing for easy modification of elements within the array, unlike strings which are immutable and do not allow direct changes to their content. 06:06 Arrays in JavaScript are mutable objects, with methods like toString to convert arrays to strings, join to customize array element separators, pop to remove and return the last element, and push to add elements at the end. -Understanding array methods like toString, join, pop, and push in JavaScript for manipulating array elements efficiently. -Exploring the usage of shift and unshift methods to remove/add elements at the beginning of an array, and the importance of remembering these syntaxes for developers. -Demonstrating the delete operator to remove specific elements from an array in JavaScript. 12:09 The video discusses array methods like concat, sort, splice, slice, and reverse, explaining their functionalities and usage with examples. It also demonstrates the implementation of loops in JavaScript for array manipulation. -Explanation of array methods like concat, sort, splice, slice, and reverse with practical examples. -Demonstration of how to use loops in JavaScript for array manipulation. 18:12 The video explains the concepts of forEach loop, for...of loop, and for...in loop in JavaScript, demonstrating how to iterate over arrays and objects efficiently using different loop methods. -Explanation of forEach loop and how to use arrow functions with it to access value, index, and array elements. -Demonstration of for...in loop for iterating over object properties and avoiding inherited properties. -Introduction to map, filter, and reduce functions for manipulating arrays efficiently, with a focus on using map to create a new array with squared values. 24:14 Understanding how to use map, filter, and reduce functions in JavaScript can simplify code and solve specific problems efficiently. These functions help manipulate arrays and perform operations based on defined conditions. -Map, filter, and reduce functions are essential for array manipulation and efficient coding in JavaScript. -The importance and practical applications of the filter function in JavaScript, especially in UI development and React projects. -Explaining the concept and practical usage of the reduce method in JavaScript for running functions on array elements to obtain a single value.
Jis jis ko java script samjh nhi aa raha don't wry wait for implementing it in projects and you can try another detailed java script course... But I am learning python and java in this semester and also learning this web development course so I am continuing only watching and waiting for projects...try another detailed java script course if you are uncomfortable to understand at this time..😊😊
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai...
Hats off Harry bhai.....❤
yhe jo shift hota hai wo pop ka bap hota hai ye jo unshift hotahai wo push ka bap hota hai hats off 😆but dono oposite hota hai
Bhai Tora Explain Kiya Kare Detail Se Bataya Kare Khud Kar Lete Hi Hame Samaj Nahi Ata hai Mene Apki Sare Videos Dekli Hai html / CSS, Ka Lekin JS ki Videos Samaj Nahi Ati Bar Bar Dekh Raha Ho Lekin Samaj Nahi ARaha Hai Aor HTML / CSS, ki videos Barya Ti LEkin JAva Samaj Nahi Araha Hai Please Tora Detail Se Bataye 🥺
@@Learn_with_Furqan same
I can literally say to those who r very new here, trust me, he worked so hard to set those complete series with deep explanations for each and every concept. Going with his courses is genuinely worth the investment, as they provide a comprehensive and engaging learning experience.
Amazing job dude!
Harry sir,
I've watching your videos when I was studying in class 9th and now I am in a university doing BCA with the knowledge you provided and everything in coding I'm able to digest easily because of you.
I thank you from the bottom of my heart for creating such a useful channel with thousands of informative videos.
HATS OFF FOR YOU SIR AND MAY ALLAH BE WITH YOU IN EVERY SITUATION FOR THE GOOD. 🌙🌟
which University bro?
@@dhanjitznath DSEU
@@edward-soli Nice 👍.
bro me bhi DSEU me hi hu vo koi university nhi h.
fir kiya ha @@chahatkumar9301
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai...
Respect Sir
00:01 Arrays in JavaScript are used to store multiple values within one name.
01:57 JavaScript Arrays and accessing their length
05:36 JavaScript arrays can be mutated to change their values.
07:39 The video discusses converting an array to a string using the toString method, joining array elements using the join method, and removing the last element of an array using the pop method.
11:38 The video discusses JavaScript arrays and key operations like deleting elements and concatenating arrays.
14:02 The slice function in JavaScript arrays helps in removing and adding elements in a specific range of indexes.
17:45 JavaScript Arrays and different types of loops
19:30 JavaScript Arrays basics
23:17 Understanding JavaScript map function and its usage
25:07 The 'greaterThan' function returns true if the element is greater than 7, else it returns false.
28:38 Reduce is not frequently used compared to map and filter.
30:24 RUclips video summary on JavaScript Arrays
Bhai Chat GPT hai kya tu 😂😂
What a course this is really better than any paid course....
Bhai tujhe ye aaj pata chala hai?
Mereko 2 saal pehle hi pata chal gya tha
Mere ko 4 saal se pata h 😇
@@AadvikSwaraj mereko pichle janam mein
@@AadvikSwarajtu yt he 6 months phle join kia hi 😂
@@psychox100 ye mera dursa account h, mere paas 3 google accounts h. yeh wala naya h
10:17 yes we can push "harry" into it because it is a Array we cn store different types of variables in it.
sab log suno,
jo shift hota hai wo pop ka bhai hota hai
aur jo push hota hai wo unshift bhai hota .
thanks you harry sir
Harry bhai commenting first time
Dil sa thankyou ,
Apna mara hajaro rupiya bacha lia fees ka
shift jo hota hai wo pop ka bhai hota hai
aur unshift jo hota hai wo push ka bhai hota hai
what a way of learning harry bhai
I am truly inspire from you
respect from pakistan
shift() is the bhai of pop() which removes the first element of an array and returns the new array. Whereas unshift() is the bhai of push() which adds an element to the beginning of an array and returns the new array.
i am a first year student and following this course ..it is very helpful for me
thanks harry bhai
this video took my 4-5 hours to learn completely, most difficult concept [for me] finally understood. Thanks Harry Bhai, you are really hero. My all blessing for you.
harry bhai mereko pichle janam se pata tha ki ye course kitna badiya hai. Thanks for making it free
to pichle janm me q ni padha be 💩💩💩💩
@@red_xo teri maa ke sath busy tha
😂😂😂@@red_xo
my mind is blown for now but this course is definately better that any other paid courses for sure , Thank you so much Harry
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai...
thank u Harry bhau
Congratulation harry bhai for 5 mil🎉. I am following your sigma web development course and i have completed 33 lecs. My experience so far has been great. Thank you for bringing this free course❤. #SigmaBatchOP #HarryBhai
your way of teaching is too understandable,
Thanks for making this video 💫
op bhai array pdh k mja hi aagya .....kbhi itne acche se arrray ka knowledge nhi tha.........
Really valuable course Harry sir
At cost on only time no money 😊😊
10:05 yes Harry bhai "Harry " push ho jayenga
shift () jo hota hai wo pop() ka bhai hota hai
unshift() jo hota hai wo push() ka bhai hota hai
#SigmaBatchOp #JavascriptOp
// comment bola tha
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai...
Hats off Harry bhai.....
shift removes from front,pop removes from behind
push adds in last, unshift adds in starting
💯
Following this course from beginning from Pakistan ❤
Congratulations for 5 million subscribers 🎉🎉🎉🎉🎉🎉🎉❤❤❤
Soon, you'll get 100 million subscribers 🎉🎉
congratulation sir on 5m , may you have more happy life and long life
5m toh bas shuruwat hai! Waiting for Diamond Play Button❤
Congratulations for 5 Million family Harry Bai 🎉🎉
#Sigmabatchop
ye jo shift hota hai na vo pop ka brotherhood hota hai and ye jo unshift hota hai na vo push ka bhai hota brotherhood hota hai wow respect sir love you
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai...
thanks harry bhai
Congratulations Harry Bhai for achieving 5 Million Subscribers.
🎉🎉🎉
Next Step is hit to 10million subscribe.
I hope that will be done in next 1 or 2 years or more less time🎉🎉🎉🎉
5 Million Subscribers ❤ Love Coding....... and This Channel ❤
#harrybhai congratulations for 5M subs, the family will be increasing like anything else.
continuing in 2024 after exams see what i miss
Ye jo shift( ) hota hai wo pop( ) ka Bhai hota hai aur jo unshift( ) hota hai wo push( ) ka Bhai hota hai.......😍😍
"ye shift jo hota vo pop ka bhai hota hai...
aur ye jo unshift hota hai vo push ka bhai hota hai..."
superb sir.
Main confess karta hu ki mujhe 11² = 121 nahi pata😁
Koi baat nhi
Ab ydd rahega hamesha 🤣🤣
Noob
Many Congratulations @Harry Sir for 5M. ❤💝 I was on 47th video of #sigma_batch_op but as I saw.. clicked on recent video to congrats you. 😊
How the hell is everyone first here? 😅😅😂
When Harry Paji is the teacher every one wants to be the first to comment. ❤
@@ziaulislambhatt4685 really true 👏👏.
jo shift hota hai voh pop ka bhai hota...
and unshift jo hota hai voh push ka bhai hota hai!!!
Love you Harry bhai!!! #SigmaBatchOP
Push() - Add an element from end in the array.
Pop() - Remove an element from the end in the array.
unshift() - Add an element at start in the array.
shift() - Remove an element at start from the array.
---------------
Push - unshift
Pop - shift
shift = pop ka bhai
unshift = push ka bhai
Hi
@@RaviBhawsar-bk9fi hi
I thought I was last in this race, I never being consistent in this course but trust me whenever I spent time on this course I never regret.
JavaScript OP
Yes it is possible because Arrey is mutable hence you can update the array by any method over it
shift and unshift operations beginning mein perform karte haii
ye jo shift hai na woh pop ka bhai hota hai..
ye jo unshift hai na wohh push ka bhai hota haiii
thank youu Harry bhaii❤
push - add an element in the back of array
pop - removes element from the back of array
shift - removes element from the front of array (pop ka bhai)
unshift - add one element in the front of array (push ka bhai)
shift()---------------->pop() ka bhai hota hai
unshift()------------> push() ka bhai hota hai
Tutorial - 63 Done ✅
#SigmaBatchOP #HarryBhai
Thank you ❤ Harry bhai for this amazing course
I'm writing this in Marathi so that I can remember it.
shift popचा भाऊ आहे आणि unshift pushचा भाऊ आहे.
एक नंबर ना माझ्या लेकरा ❤❤❤
i am going to made a project in web development after publish that i will mention you as my mentor and murshad there thanku harry bahi😇
jo shift hota hai, wo pop ka bhai hota hai...
aur jo unshift hota hai, wo push ka bhai hota hai...
Harry bhai cha gaye!
Jo Shift hota hai vo pop ka bhai hota hai
and Jo Unshift hota hai vo Push ka bhai hota hai.
Awsome series Harry Bro Love You Bro🥰🥰🥰🥰🥰🥰🥰😇😇😇😇😇😇😇
shift() jo hota hai wo pop() ka bhai hota hai and ye unshift() push() ka bhai hota hai.
shift() - removes first value from array. (0th index)
pop() - removes last value from array. (n-1 th index)
unshift() - adds value at 0th index of array.
push() - adds value at n-1 index of array. (M...IMP)
Javascript OP ! Great Work Harry Sir.....❤
Harry bhai huge respects to u , spending so much time creating all this for us ❤️❤️
pop = delete last element of array
push= for enter an element at the end of the array
shift = for deleting first element of array
unshift = for enter an element at the first position of an array
shift hai ye pop ka bhai hai, aur unshift hai voh push ka bhai hai.SIGMA BATCH OP
Ye jo shift hota h wo pop ka bhai hota ha
Ye jo unshift hota h wo push ka bhai hota h
Love you Harry bhai
jo shift() hota hai, wo pop() ka bhai hai because dono elements ko remove krne me use hote hain array ke andr and jo unshift() hota hai wo push() ka bhai hota hai because ye dono elements ko array me add krne ke liye use hote hain.
now im in my third year and trying my best to learn compete web dev in next 3 months i am on coreect path #sigmabatch op
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai... vote for android dev course please this sigma course is OP java script is also OP
push-->unshift
pop-->shift
10:15 Yes it will Show in Array.
ye jo shift hota hai voh pop ka bhai hota hai...
ye jo unshift hota hai voh push ka bhai hota hai...
#sigmabatchop
#javascriptop
#javascriptOP
#sigmabatchOP
🔥🔥🔥🔥🔥
shift is brother of pop and unshift is brother of push.
AMAZING JOURNEYY TILL NOWW !! Thanks Harry bhai ... Very Productive Holidayss !! 🔥🔥
shift is brother of pop while unshift is brother of push
❤️🙏
Sigma Batch OP
❤️🙏
shift jo hota hai wo pop ka bhai hota hai aur
jo unshift hota hai wo push ka bhai hota hai
Thanks harry bro ❤
Jo shift( ) hota hai wo pop( ) ka bhai hota hai
aur unshift( ) hota hai push( ) ka bhai.
Sigma batch OP!
Shift Pop ka bhai .....
Unshift Push Ka bhai .....
Harry Mera Bhaii❤
Pop jo hai wo shift ka bhai hota hai Pop last wly ko nikalta hai , or shift start wly ko nikalta hai
Push jo hai wo unshift ka bhai hota hai . Push last main add krta hai or Unshift start main add krta hai
La Ilaha Illallah Muhammad Rasulullah SAW
Shift == < pop >
Unshift == < push >
jo shift hota hai vo pop ka bhai hota hai
OR
jo unshift hota hai vo push ka bhai hota hai
LOVE FROM MY BHAI HEART 😁
"Shift" is the brother of "Pop".
"Unshift" is the brother "Push".
push() ---> add to end
ishka bhai
unshift() ---> add to start
---------------------------------
pop() ---> delete from end & return
ishka bhai
shift() ---> delete from start & return
push ---> piche dalaga
unshift ---> aga dalega
pop ------->piche sa nikala ga
shift -----> aga sa nikala ga
kiya daalega bhai
shift is brother of pop
unshift is brother of push... Learned✌
Lecture successfully completed on 22/11/2024 🔥🔥
SHIFT jo hota hai woh POP bhai hota hai
aur jo UNSHIFT hota hai woh PUSH ka bhai hota hai.....❤
sihft is the brother of pop ---> Deletion
while unshift is the brother of push ----> Addition
jo shift hota hai voh pop ka bhai hota hai...
jo unshift hota hai voh push ka bhai hota hai.
SHIFT IS BHAI OF POP UNSHIFT IS BHAI OF PUSH
muje 11 square pata nahi tha thanks harry bhai for maths and web classes
#JavaScriptop
pop() : used to remove last element
push() : used to add an element from last.
shift() : used to delete an element from front.
unshift() : used to add an element from front,
pop aur shift bhai bhai.
push and unshift bhai bhai
Let me clear one thing...... The things which we are doing with map..... We can also do with forEac
...maybe
11:12 Unshift() is brother of push() & shift() is the brother of pop() , , shift() Take out the first value from the Array whereas the pop take out the value from the last of the Array And Push() is used to insert/put the value at the last of the Array Whereas unshift is used to insert/put the value at the beginning/first of the Array.
pop-removes last element
shift-removes first element ----> pop aur shift bhai bhai
unshift-add first element
push-add last element -----> unshift aur push bhai bhai
Jo shift hota hai woh pop ka bhai hota hai, jo unshift hota hai woh push ka bhai hota hai 💡
started late brother but trying my best...its an awsome course 😎❤🔥
Arrays in JavaScript are used to store multiple values in a single variable. They can hold different data types and are mutable, unlike strings. Arrays are commonly used in web development, such as in React components, to display repeated content. Key array methods include toString, join, pop, push, shift, unshift, concat, sort, splice, and slice.
Key moments:
00:05 An array in JavaScript allows storing multiple data types under one name, enabling flexibility in web development for tasks like creating components in React.
-Arrays are versatile in JavaScript, accommodating various data types like numbers, strings, and objects, providing a convenient way to manage and access multiple values efficiently.
-Arrays are commonly used in web development, especially in React components, where they help organize and display repetitive data like blog articles in a structured manner.
-Arrays in JavaScript are mutable, allowing for easy modification of elements within the array, unlike strings which are immutable and do not allow direct changes to their content.
06:06 Arrays in JavaScript are mutable objects, with methods like toString to convert arrays to strings, join to customize array element separators, pop to remove and return the last element, and push to add elements at the end.
-Understanding array methods like toString, join, pop, and push in JavaScript for manipulating array elements efficiently.
-Exploring the usage of shift and unshift methods to remove/add elements at the beginning of an array, and the importance of remembering these syntaxes for developers.
-Demonstrating the delete operator to remove specific elements from an array in JavaScript.
12:09 The video discusses array methods like concat, sort, splice, slice, and reverse, explaining their functionalities and usage with examples. It also demonstrates the implementation of loops in JavaScript for array manipulation.
-Explanation of array methods like concat, sort, splice, slice, and reverse with practical examples.
-Demonstration of how to use loops in JavaScript for array manipulation.
18:12 The video explains the concepts of forEach loop, for...of loop, and for...in loop in JavaScript, demonstrating how to iterate over arrays and objects efficiently using different loop methods.
-Explanation of forEach loop and how to use arrow functions with it to access value, index, and array elements.
-Demonstration of for...in loop for iterating over object properties and avoiding inherited properties.
-Introduction to map, filter, and reduce functions for manipulating arrays efficiently, with a focus on using map to create a new array with squared values.
24:14 Understanding how to use map, filter, and reduce functions in JavaScript can simplify code and solve specific problems efficiently. These functions help manipulate arrays and perform operations based on defined conditions.
-Map, filter, and reduce functions are essential for array manipulation and efficient coding in JavaScript.
-The importance and practical applications of the filter function in JavaScript, especially in UI development and React projects.
-Explaining the concept and practical usage of the reduce method in JavaScript for running functions on array elements to obtain a single value.
Jis jis ko java script samjh nhi aa raha don't wry wait for implementing it in projects and you can try another detailed java script course... But I am learning python and java in this semester and also learning this web development course so I am continuing only watching and waiting for projects...try another detailed java script course if you are uncomfortable to understand at this time..😊😊
code with harry is one of the best channel for learning hats off yrr... lakin bhai like toh de de ROHAN KA DOST HUN MEIN
shift jo hota hai vo pop ka bhai hota hai aur unshift push ka bhai hota hai
shift pop ka bhai hota hein
or unshift push ka bhai hota hein
thank you so much bhaiya :)
completed on 15/10/24
Yeh jo shift hota hai wo pop ka bhai hota hai
aur ye jo unshift hota hai , push ka bhai hota hai
Harry bhai 😀
Shift is the sibling of pop
And unshift is the sibling of push
push () hota hai unshift () ka bhai
or shift () hota hai pop() ka bhai
1. Shift is the brother of pop()
2. unshift is the brother of push()
Strings are imutable but arrays are mutable.
Shift pop ka vai hota hai Aur
Unshift push ka vai hota hai...
#JavaScript Op
Shift jo hota hai wo "Pop" ka bhai hota hai aur "Unshift" jo hota hai wo "Push" ka bhai hota hai.