Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 352 Bytes

function8.md

File metadata and controls

14 lines (13 loc) · 352 Bytes

避免副作用(下)

Bad logo

	const addItemToCart = (cart, item) => {
	  cart.push({ item, date: Date.now() });
	};

Good logo

	const addItemToCart = (cart, item) => {
	  return [...cart, { item, date: Date.now() }];
	};