some cleanup...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-06-15 21:37:25 +03:00
parent 6979f9f401
commit 2f925bf361

View File

@ -26,17 +26,18 @@
// //
// Imagine an apple, it's a "thing" that is an "apple", or we say that // Imagine an apple, it's a "thing" that is an "apple", or we say that
// it has a value "apple". There are lots of apples in the world, // it has a value "apple". There are lots of apples in the world,
// each one is different but all are apples. Now imagine two people, each // each one is different but all are apples. Now imagine two people,
// looking at an apple, wa can say that each person sees the value "apple", // each looking at an apple, we can say that each person sees the value
// those values are equel, and if those people are sitting at the same // "apple", those values are equal, and if those people are sitting at
// table and looking at the same apple, we say that their apples are the // the same table and looking at the same apple, we say that their
// same, or they are of the same identity, (i.i. the same apple). // apples are the same, or they are of the same identity, (i.e. the
// same apple).
// Then if we can take a different set of people looking at apples, but // Then if we can take a different set of people looking at apples, but
// now each one has their own personal apple, the values are still the same, // now each one has their own personal apple, the values are still the
// both apples are still aplles but now they are different aplles, aren't // same, both apples are still apples but now they are different apples,
// they? and thus we say they are of different identities. // aren't they? And thus we say they are of different identities.
// We'll come back to this concept a bit later, once we introduce JavaScript // We'll come back to this concept a bit later, once we introduce
// values and types. // JavaScript values and types.
// //
// //
// Basic values // Basic values