70 lines
1.1 KiB
JavaScript
70 lines
1.1 KiB
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
let customers = [
|
||
|
|
{
|
||
|
|
'id': 1,
|
||
|
|
'f_name': 'Abby',
|
||
|
|
'l_name': 'Thomas',
|
||
|
|
'gender': 'M',
|
||
|
|
'married': true,
|
||
|
|
'age': 32,
|
||
|
|
'expense': 500,
|
||
|
|
'purchased': ['Shampoo', 'Toys', 'Book']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': 2,
|
||
|
|
'f_name': 'Jerry',
|
||
|
|
'l_name': 'Tom',
|
||
|
|
'gender': 'M',
|
||
|
|
'married': true,
|
||
|
|
'age': 64,
|
||
|
|
'expense': 100,
|
||
|
|
'purchased': ['Stick', 'Blade']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': 3,
|
||
|
|
'f_name': 'Dianna',
|
||
|
|
'l_name': 'Cherry',
|
||
|
|
'gender': 'F',
|
||
|
|
'married': true,
|
||
|
|
'age': 22,
|
||
|
|
'expense': 1500,
|
||
|
|
'purchased': ['Lipstik', 'Nail Polish', 'Bag', 'Book']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': 4,
|
||
|
|
'f_name': 'Dev',
|
||
|
|
'l_name': 'Currian',
|
||
|
|
'gender': 'M',
|
||
|
|
'married': true,
|
||
|
|
'age': 82,
|
||
|
|
'expense': 90,
|
||
|
|
'purchased': ['Book']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': 5,
|
||
|
|
'f_name': 'Maria',
|
||
|
|
'l_name': 'Gomes',
|
||
|
|
'gender': 'F',
|
||
|
|
'married': false,
|
||
|
|
'age': 7,
|
||
|
|
'expense': 300,
|
||
|
|
'purchased': ['Toys']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': 6,
|
||
|
|
'f_name': 'Homer',
|
||
|
|
'l_name': 'Simpson',
|
||
|
|
'gender': 'M',
|
||
|
|
'married': true,
|
||
|
|
'age': 39,
|
||
|
|
'expense': 500,
|
||
|
|
'purchased': ['Book']
|
||
|
|
}
|
||
|
|
];
|
||
|
|
|
||
|
|
console.log("donnée");
|
||
|
|
console.table(customers);
|
||
|
|
|
||
|
|
const table_seniors = customers.filter(customer=>customers.age>=60);
|
||
|
|
console.log("Donnée seniors :",table_seniors);
|