1
I have that code:
Math.floor((this.currentTime/1000/60)<<0);
I don’t understand what these two are for <<
.
1
I have that code:
Math.floor((this.currentTime/1000/60)<<0);
I don’t understand what these two are for <<
.
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.
I know that your question is Javascript and that I indicated as duplicate is C and C++. It happens that the operators
<<
and>>
Javascript is the same as C, C++, C# and Java. So what goes in that other question, also goes in your.– Victor Stafusa