Ad
  • Custom User Avatar

    I'm still a bit new to the programming world and have no idea how the bit version works. Does this method have a certain term in the computer science world that I can google to learn more?

  • Custom User Avatar
  • Custom User Avatar

    On the third line I'm having trouble getting any answers from google on how the last part works. Specifically after returning
    "stack.push(oper[el] ? oper[el](+stack.pop(), +stack.pop()) : +el)"
    you have in the same return the following
    ", stack".
    It kind of looks like returning two values which as far as I know is impossible in javascript without returning them both inside a single object or an array. My question is, what does the ", stack" part do and how does it work?