Open30
Tips Output vol.2
Done.
Done.
Array.prototype.reduce()
reduce()
メソッドは、配列の中にある一つ一つの要素に対して、直前に評価した結果を用いて、再度評価を行う。つまり、配列の中をぐるぐる回したい時に使える。
初回実行時は、直前の評価結果がないので、デフォルトでは、配列の最初の要素が初期値になる。デフォルトの代わりに初期値を指定することもできる。
const numbers = [20, 25, 30, 35]
const initNum = 10
const sum = numbers.reduce(
(sumNum, currentNum) => sumNum + currentNum,
initNum
)
console.log(sum);
//=> 120
Done.
Done.
or
メソッド(応用含む) where clause is ambiguous
の解消方法 MySQL DATE_FORMAT
関数
reference
EXSISTS
関数
reference
Rails Production環境でのアセットの取り扱い
how to treat assets in production
JavaScript `async/await` とエラーハンドリング
`where.not`