Answers for "get specific character in string javascript"

14

how to get the first character of a string in javascript

let str = 'John Wick'
let firstChar = str.charAt(0) 
console.log(firstChar); // "J"
Posted by: Guest on November-16-2020
12

javascript get first character of string

var str="Hello Folks!"
var firstStringChar = str.charAt(0); //H
Posted by: Guest on August-01-2019
2

How find a specific character in js

var word = "This is how you locate a word in a string";
var n = word.includes("word");
Posted by: Guest on November-25-2020
1

how to identify specific letter from a string in javascript

var str = "Hello world, welcome to the universe.";
var n = str.includes("world", 12);
Posted by: Guest on January-28-2021

Code answers related to "get specific character in string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language