split()
MethodYou can use the JavaScript split()
method to split a string using a specific separator such as comma (,
), space, etc. If separator is an empty string, the string is converted to an array of characters.
The following example demonstrates how to convert a comma separated string of person name into an array and retrieve the individual name using JavaScript.
<script>
var names = 'Harry,John,Clark,Peter,Rohn,Alice';
var nameArr = names.split(',');
console.log(nameArr);
// Accessing individual values
alert(nameArr[0]); // Outputs: Harry
alert(nameArr[1]); // Outputs: John
alert(nameArr[nameArr.length - 1]); // Outputs: Alice
var str = 'Hello World!';
var chars = str.split('');
console.log();
// Accessing individual values
alert(chars[0]); // Outputs: H
alert(chars[1]); // Outputs: e
alert(chars[chars.length - 1]); // Outputs: !
</script>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Laravel 8 CRUD Operation with example from the scratch
CRUD operation is a basic functionality...How to set Limit on Login Attempt in Laravel7
Hey Artisan Did you ken that you can...Repair grub after Installing Windows on Preinstalled Ubuntu
You might want to use Windows and Ubuntu...How to Add New Elements at the Beginning of an Array in JavaScript
Use the unshift() Method You can use...How to use Multiple Databases in Laravel
You already know how to connect MySQL da...