Home / Javascript Tips Generated By ChatGPT / Accessing Characters in Strings in Javascript Access individual characters in a string using bracket notation. Source Code let hello = "Hello, world!"; console.log(hello[7]); // "w"