jaimehgb / RaiWebWallet

Raiblocks raiwallet.com wallet source code

Home Page:http://raiwallet.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing semicolon?

wildstyle007 opened this issue · comments

var dec = str.toString().split(''), sum = [], hex = [], i, s

JavaScript has ASI (Automatic semicolon insertion). The var declaration here is one of the cases included in ASI. I've included a link to some information that may be helpful regarding this issue.

EDIT: official docs instead - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Automatic_semicolon_insertion