Working with HTML
Exactly like vanillaJS, there are mainly three functions that do the same thing (instead of vanillaJS, who has properties).
.text() =>Returns the innerText, or sets it if a string is passed as an argument
.html() => Returns the innerHTML, or sets it if a string is passed as an argument
.val() => Returns the value of an input field, or sets it if a string is passed as an argument