Skip to content

Commit 3d2ee1a

Browse files
committed
Corregido el Readme con los 3 pasos en ingles
1 parent 6755dc6 commit 3d2ee1a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

exercises/033-addObjectProperty/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
## 📝 Instructions:
44

5-
1. Write a function called `addObjectProperty`. Given two objects and a key, `addObjectProperty` sets a new property on the 1st object at the given key. The value of that new property is the 2nd object.
6-
2. The function `addObjectProperty` should then return the first object with the new property.
5+
1. Write a function called `addObjectProperty`. This function takes two objects and a key as arguments.
6+
2. The `addObjectProperty` function must set a new property on the first object using the key provided. The value of this new property must be the second object.
7+
3. The `addObjectProperty` function must return the first object modified with the new property.
78

89
## 📎 Example:
910

0 commit comments

Comments
 (0)