-
Notifications
You must be signed in to change notification settings - Fork 0
/
proto.js
32 lines (31 loc) · 1.07 KB
/
proto.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
let data = [
{
category: 'men clothing1',
description:
'Your perfect pack for everyday use and walks in the forest. Stash your laptop (up to 15 inches) in the padded sleeve, your everyday',
id: 1,
image: 'https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg',
price: 109.95,
title: 'Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops',
},
{
category: 'men clothing',
description: 'Mens Cotton Jacket',
id: 2,
image: 'https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg',
price: 109.95,
title: 'Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops',
},
{
category: 'men clothing3',
description:
'Your perfect pack for everyday use and walks in the forest. Stash your laptop (up to 15 inches) in the padded sleeve, your everyday',
id: 1,
image: 'https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg',
price: 109.95,
title: 'Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops',
},
];
var i = data.findIndex(item => item.id == 1);
let u = data.splice(i, 1);
console.log(u, data);