Visszatér az szöveggé, ami az eredeti String példány kezdő és végpont indexe közé esik. A slice esetén a kezdet nem lehet nagyobb mint a vég.
slice(indexStart) slice(indexStart, indexEnd)
const str = 'The quick brown fox jumps over the lazy dog.' console.log(str.slice(5)) // Expected output: "uick brown fox jumps over the lazy dog." console.log(str.slice(4, 19)) // Expected output: "quick brown fox" console.log(str.slice(-4)) // Expected output: "dog." console.log(str.slice(-9, -5)) // Expected output: "lazy"