Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created May 19, 2020 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozcanzaferayan/3259cdd38c6eb80cbabd20ff8a0c1531 to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/3259cdd38c6eb80cbabd20ff8a0c1531 to your computer and use it in GitHub Desktop.
const editItemAt = (index) => {
const todos = [...todoList];
var item = prompt("Change item name", todoList[index]);
todos[index] = item;
setTodoList(todos);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment