We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a user, I can input a word in the field and add it to the list by clicking on the button.
button
addEventListener
input-form
inputWord(event)
sortStrings(toSort = [], sortType = 'oldest')
isWord(text = '')
renderList(toRender = []) in render-list.js.
form
input
name="text" placeholder="new word"
type="button" value="add"
This issue will be developed on branch inputword
inputword
The text was updated successfully, but these errors were encountered:
mauricemat
No branches or pull requests
As a user, I can input a word in the field and add it to the list by clicking on the
button
.Logic: Input (Add word)
Type: listeners
addEventListener
) with the idinput-form
in/listeners.Type: handlers
inputWord(event)
in/handlers. It's an entry point for adding or removing a word.Type: logic
sortStrings(toSort = [], sortType = 'oldest')
in /logic.isWord(text = '')
in /logic to check if the user input is a word.Type: components
renderList(toRender = []) in render-list.js.
Interface: Input (Add word)
Type HTML
form
tag with the idinput-form
.input
tag withname="text" placeholder="new word"
as a form element.input
tag withtype="button" value="add"
as a form element.This issue will be developed on branch
inputword
The text was updated successfully, but these errors were encountered: