split Method | String Object In JavaScript

preview_player
Показать описание
🎁 Join my channel to get access to perks:

🧡 Hello All JavaScript Lovers Outhere!

Today you're going to learn about the String Object In JavaScript.

This tutorial is a series of videos, in each video we will discuss a method (or more) of the String Object in JavaScript.

In today's video, you're going to learn about split, another string method.

Split is used to divide a string into an ordered list of substring based on a separator, and returns the substrings in array, it doesn't change the original string.

Syntax:
split(seperator)
split(separator, limit)

limit : A non-negative integer specifying a limit on the number of substrings to be included in the array. If provided, splits the string at each occurrence of the specified separator, but stops when limit entries have been placed in the array. Any leftover text is not included in the array at all.
• The array may contain fewer entries than limit if the end of the string is reached before the limit is reached.
• If limit is 0, [ ] is returned.

🌍 Social Media Links.

💲 Suppport the Channel
Рекомендации по теме
Комментарии
Автор

🚨 Big Announcement! 🚨

Hey everyone! I've made a big decision for this channel—I've turned off ads on all my videos! That's right, you can now enjoy all my content ad-free! This means I'm earning $0 from ad revenue, but I believe this is the right move to make your viewing experience better.

If you find my content valuable and want to support my work, there are several ways you can help:

Like & Share: Simply liking the video and sharing it with friends helps a lot!
Subscribe & Hit the Bell: Stay updated and never miss a new video.
YouTube Thanks: Use the "Thanks" button below to send a one-time donation.
Join the Channel Community: Get exclusive perks and behind-the-scenes content.

Every little bit counts and goes directly to creating more high-quality content for you all. Thank you so much for your continued support!

Let’s keep growing and learning together! 🌟

CodeExplained
Автор

i love the design of teaching. thank you very much

WaySub
Автор

Again. The graphical explanation is crystal clear.

joeleearchitect
Автор

Thanks buddy. Super clear. Explanation and graphic is top notch.

satriolanglang
Автор

Very well explained, to the point material.

asadullahahmed
Автор

Nice videos bruh these are really helpfull now that am preparing for an interview keep this thing up

SpaceHound
Автор

this was really clear and helpful thank you.🤩

fatemehshamsi
Автор

Thanks for the video. I do have a question... What if you want to remove the punctuations. How do I go about it?

fridayokorie
Автор

And after doing whatever I need to do with the string how can I put the updated string together with the spaces ?

AnimalKin