3 thoughts on “JavaScript Programming Language: Technologies’ Very Own Mt Everest

  1. Using `numbers.sort` for finding the maximum is pretty inefficient. Sorting is O(n log n), finding the maximum with ES5 Math.max.apply(null, numbers) or ES6+ Math.max(…numbers) is O(n) just like the “old” loop.

  2. Pingback: Know the Amazing Advantages of React Library – Gloch Web Solutions

Leave a Reply

Your email address will not be published. Required fields are marked *