Unfamiliar characters used in JavaScript encryption script

后端 未结 3 1964
既然无缘
既然无缘 2020-12-16 18:28

Here is an excerpt from a JS encryption script that I am studying.

function permutationGenerator(nNumElements) {
    this.nNumElements     = nNumElements;
           


        
3条回答
  •  醉梦人生
    2020-12-16 19:09

    << is a bitwise left shift. >> is a bitwise right shift. | is a bitwise OR. & is a bitwise AND. Please see this reference for more information.

提交回复
热议问题