References

String.at()

Leírás

Karakter hozzáférése.

Szintaxis

at(index)

Példa

const string = 'W3Schools'
const example = string.at(2)
// Expected output: 'S'
 
// ugyanaz másképp
const item = string[2]
// Expected output: 'S'
in this article
back to top