1
0
Fork 0

Update en.md

This commit is contained in:
Zee 2023-04-16 12:07:39 +02:00 committed by GitHub
parent 8268b09fe3
commit cc278a3e4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,11 +11,13 @@ instead, thereby overwriting the value of the attribute.
## Signature
```js
Part Part.attr(
string name,
mixed value,
bool overwrite = false
)
```
<Tip compact>This method is chainable as it returns the `Part` object</Tip>
@ -23,7 +25,9 @@ Part Part.attr(
## Example
<Example caption=" Example of the Part.attr() method">
```js
({ Point, points, Path, paths, part }) => {
cont part = {
@ -33,6 +37,8 @@ Part Part.attr(
}
}
```
</Example>