Write Your JavaScript Code Here
Run
Black
Copy Code
// ChatAt():It return the value present at the specified index of the string // string.charAt(index); let srt ="Autobots" let ele = srt.charAt(4); console.log(ele);
Output: