You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// charAt(): Takes index and it returns the value at that index
|
|
string.charAt(index)
|
|
let string = '30 Days Of JavaScript'
|
|
console.log(string.charAt(0)) // 3
|
|
let lastIndex = string.length - 1
|
|
console.log(string.charAt(lastIndex)) // t
|