I have got some JSX code in a react app like this:
...
 _renderSignOutLink() {
    if (!this.props.currentUser) {
      return false;
    }
    return (
      <a href="#" onClick={::this._handleSignOutClick}><i className="fa fa-sign-out"/> Sign out</a>
    );
...
What does the double colon, ::, mean before calling the function?
 
     
    