Skip to content

Commit

Permalink
fix typo in custom attribute converter tutorial (#1307)
Browse files Browse the repository at this point in the history
  • Loading branch information
camskene authored Feb 28, 2024
1 parent f0aa0ef commit c0cbee0
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit c0cbee0

Please sign in to comment.