Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Commit 709fd33

Browse files
estelleteoli2003
andauthored
Add women to the example (#2685)
* add 3 women to the list of 10 men * john to maria * Run Prettier --------- Co-authored-by: Jean-Yves Perrier <jypenator@gmail.com>
1 parent 7569bbb commit 709fd33

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<p>Best Dynamic Duos in Sports:</p>
22
<ol class="double-list">
3-
<li>Stephen Curry + Klay Thompson</li>
3+
<li>Simone Biles + Jonathan Owens</li>
4+
<li>Serena Williams + Venus Williams</li>
45
<li>Aaron Judge + Giancarlo Stanton</li>
5-
<li>Michael Phelps + Ryan Lochte</li>
66
<li>LeBron James + Dwyane Wade</li>
77
<li>Xavi Hernandez + Andres Iniesta</li>
88
</ol>

live-examples/js-examples/expressions/expressions-deleteoperator.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
const Employee = {
2-
firstname: 'John',
3-
lastname: 'Doe',
2+
firstname: 'Maria',
3+
lastname: 'Sanchez',
44
};
55

66
console.log(Employee.firstname);
7-
// Expected output: "John"
7+
// Expected output: "Maria"
88

99
delete Employee.firstname;
1010

0 commit comments

Comments
 (0)