functional programming Check if an array contains numbers succinctly Or how to write a one-liner and still keep your code expressive. Here's that one-liner. const containsNumbers = !someArr.some(isNaN) What's going on here? First, our array uses the some method. This method