Skip to content
New issue

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

fix typo #1307

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Web Components can receive data in many ways, but one of the most common ways is to use an attribute because attributes are declarative, static, and easy to read & write in HTML!

Every HTML element in the browser has *attibutes* and *properties*:
Every HTML element in the browser has *attributes* and *properties*:

* [*Attributes*](https://developer.mozilla.org/en-US/docs/Glossary/attribute) are additional values that describe the state of an element in HTML. Attributes can only have string values.
* [*Properties*](https://developer.mozilla.org/en-US/docs/Glossary/property/JavaScript) are the instance properties of an element's JavaScript DOM object. Properties can take any kind of value, like numbers, booleans, and arrays.
Expand Down
Loading