mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
589 B
23 lines
589 B
const person = { |
|
name: 'Rick', |
|
age: 77, |
|
country: 'US', |
|
} |
|
// /*/ // ⚡ |
|
export const tests = [] |
|
const t = (f) => tests.push(f) |
|
|
|
t(() => typeof samePerson === 'object') |
|
t(() => typeof person === 'object') |
|
t(() => typeof clone1 === 'object') |
|
t(() => typeof clone2 === 'object') |
|
t(({ eq }) => eq(clone1, clone2)) // equal |
|
t(() => clone1 !== clone2) // but different ! |
|
t(() => person === samePerson) // same value |
|
t(() => person.name === 'Rick') |
|
t(() => person.age === 78) |
|
t(() => person.country === 'FR') |
|
t(() => clone1.country === 'US') |
|
t(() => clone2.age === 77) |
|
|
|
Object.freeze(tests)
|
|
|