ES7 has only two features



ES7 features:
  1. Array.prototype.includes - if you declare 
       var a = [1, 2, 3]
    a.includes(1); True 
    a.includes(1, 0); True 
    a.includes(1, 2) 
    
   The second parameter is fromIndex - which ask it to start seeking after certain no of position.


  1. Exponentiation Operator ** - example 4 ** 9 = 262144

Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm