Reference Slice

Example - The first 10 charators of the first todo title: delectus a
Example - The todo title: delectus aut autem
WDS Video on this Hook
fetch("https://jsonplaceholder.typicode.com/todos") .then((response) => response.json()) .then((todos) => { let refactoredTitle = ""; refactoredTitle = todos[0].title.slice(0, 10); console.log(todos, refactoredTitle); });