1. What is node.js??
Node.js is a program to run JavaScript on our computers.
2. In your own words, what is Chrome’s V8 JavaScript Engine?
The V8 engine is a JavaScript engine that powers Chromium browsers and Node.JS.
3. What does it mean that node is a JavaScript runtime?
It means that we can run Node applications outside of a browser.
4. What is npm?
npm
is a package manager and software registry with over 1,000,000 JavaScript packages.
5. What version of node are you running on your machine?
v18.5.0
6. What version of npm are you running on your machine?
8.12.1
7. What command would you type to install a library/package called ‘jshint’?
npm install -g jshint
8. What is node used for?
Node is used for installing and running tools for developing JavaScript applications.
1. What are the 6 reasons for pair programming?
2. In your experience, which of these reasons have you found most beneficial?
In my experience, the engaged collaboration and social skills have been the most beneficial to me.
3. How does pair programming work?
Pair programming works by having one partner physically code, the Driver
, as well a person telling them what to code, the Navigator
.