Update README.md

This commit is contained in:
Christopher Fremond 2021-10-28 10:00:53 +01:00 committed by GitHub
parent 1c7d3d989c
commit 264fb82321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 5 deletions

View File

@ -2,13 +2,11 @@
### Instructions ### Instructions
Create a copy of the person object called clone1. Create three copies of the person object called `clone1`, `clone2` and `samePerson`.
Create an other copy of the person object called clone2.
Create a new variable `samePerson` with the same value as `person`. Increase by one the property age of `person` and set his country to `'FR'`.
Increase by one the property age of `person` A way must be found to have `clone1` and `clone2` keep the original values while `samePerson` changes with `person`.
and set his country to `'FR'`.
### Notions ### Notions