本人很菜,感觉大佬们的解答。
笨比方法
var arr = [ {product:'pd1',price: 100,profit:50,quantity: 10}, {product:'pd2',price: 110,profit:10,quantity: 1000}, {product:'pd3',price: 120,profit:30,quantity: 10}, {product:'pd4',price: 110,profit:20,quantity: 10}, {product:'pd5',price: 120,profit:70,quantity: 10}, {product:'pd6',price: 130,profit:90,quantity: 10}, ] var foo = (arr) => { var sortArr = arr.sort((a,b)=>b.profit*b.quantity - a.profit*a.quantity) var result = { product: [], price: [], profit: [], quantity: [], } sortArr.forEach(item=>{ result.product.push(item.product) result.price.push(item.price) result.profit.push(item.profit) result.quantity.push(item.quantity) }) return result } var result = foo(arr) console.log(result)
const skus = ['profit', 'product', 'price', 'quantity']; const convert = arr => arr.sort(a.profit*a.quantity - b.profit*b.quantity). reduce((pre, cur) => (skus.forEach(sku => pre[sku].push(cur[sku])), pre), skus.reduce((pre, cur) => ((pre[cur] = []), pre), {}));
应该能秀死面试官。
哈哈哈 在线等的那种么 ≡ω≡
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
笨比方法
应该能秀死面试官。
哈哈哈 在线等的那种么 ≡ω≡