Open churabou opened 5 years ago
getProducts (cb) {
setTimeout(() => cb(_products), 100)
},
buyProducts (products, cb, errorCb) {
setTimeout(() => {
// simulate random checkout failure.
(Math.random() > 0.5 || navigator.userAgent.indexOf('PhantomJS') > -1)
? cb()
: errorCb()
}, 100)
}
swiftみたいに引数にコールバックできる。
[...Array(10)].map((_,i) => `item${i}`)
乱数
Math.floor(Math.random()*10)
random()の括弧よく忘れる