HW2821
HW2821
```Javascript const obj = { a: "12", b: "23", first: { c: "34", d: "45", second: { e: "56", f: "67", three: { g: "78", h: "89", i: "90" }...
```Javascript const repeat = (cb, times, interval) => (value) => { let count = 0 const execution = () => { setTimeout(() => { count++ cb(value) if (count < times)...
`let arr = [2, 6, 3, 8, 10, 9] function getLargerToRight(arr) { const result = [] arr.forEach((num1, i, arr) => { const restArr = arr.slice(i + 1) const biggerNum =...