This content moved here: https://exploringjs.com/impatient-js/ch_arrays.html#quickref-arrays
In your command-line run the following commands:
brew doctorbrew update
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # first: | |
| lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done | |
| sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.* | |
| # To recap, the best way (I've found) to completely uninstall node + npm is to do the following: | |
| # go to /usr/local/lib and delete any node and node_modules | |
| cd /usr/local/lib | |
| sudo rm -rf node* | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ## Lenguaje Go | |
| set --export GOROOT /usr/local/go | |
| set -gx PATH /usr/local/go/bin $PATH | |
| #set -gx PATH GOROOT/bin $PATH | |
| set --export GOPATH $HOME/GoProjects | |
| set -gx PATH $GOPATH/bin $PATH | |
| ## AppEngine para GO | |
| set -gx PATH $HOME/programs/go_appengine $PATH | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Remove: | |
| touch .hushlogin | |
| Get it back: | |
| rm .hushlogin |