reading-notes
My reading notes
Project maintained by brandomoki
Hosted on GitHub Pages — Theme by mattgraham
NODE.JS
Introduction to NODE.JS
- What is node.js?
- Node.js is a runtime built on googles V8 JavaScript Engine
- In your own words, what is Chrome’s V8 JavaScript Engine?
- a compiler that translates JavaScript to Native machine code
- What does it mean that node is a JavaScript runtime?
- This is where your code is executed
- What is npm?
- What version of node are you running on your machine?
- What command would you type to install a library/package called ‘jshint’?
- What is node used for?
- Node allows developer to process code directly on their computer instead of in a browser.
Reason for Pair Programing
- What are the 6 reasons for pair programming?
- Greater efficiency
- Engaged collaboration
- Learning from fellow students
- Social skills
- Job interview readiness
- Work environment readiness
- In your experience, which of these reasons have you found most beneficial?
- In my experience Learning from fellow students is most beneficial
- How does pair programming work?
- driver and navigator driver codes while navigator explains to driver what is being coded focuses on the logic while not touching the keyboard