Write Your JavaScript Code Here

// 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: