Skip to content

Commit

Permalink
Add women to the example (#2685)
Browse files Browse the repository at this point in the history
* add 3 women to the list of 10 men

* john to maria

* Run Prettier

---------

Co-authored-by: Jean-Yves Perrier <jypenator@gmail.com>
  • Loading branch information
estelle and teoli2003 authored Dec 6, 2023
1 parent 7569bbb commit 709fd33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<p>Best Dynamic Duos in Sports:</p>
<ol class="double-list">
<li>Stephen Curry + Klay Thompson</li>
<li>Simone Biles + Jonathan Owens</li>
<li>Serena Williams + Venus Williams</li>
<li>Aaron Judge + Giancarlo Stanton</li>
<li>Michael Phelps + Ryan Lochte</li>
<li>LeBron James + Dwyane Wade</li>
<li>Xavi Hernandez + Andres Iniesta</li>
</ol>
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const Employee = {
firstname: 'John',
lastname: 'Doe',
firstname: 'Maria',
lastname: 'Sanchez',
};

console.log(Employee.firstname);
// Expected output: "John"
// Expected output: "Maria"

delete Employee.firstname;

Expand Down

0 comments on commit 709fd33

Please sign in to comment.