gistlib
index.tsxconst str = "Hello World!"; const lastChar = str[str.length - 1]; console.log(lastChar); // Output: "!" 104 chars4 lines
const str = "Hello World!"; const lastChar = str[str.length - 1]; console.log(lastChar); // Output: "!"
gistlibby LogSnag