Which of the following values is correct about how many lines defaults can be in NODE_REPL_HISTORY_SIZE?
Correct Answer: 1000
Explanation:
Note: This Question is unanswered, help us to find answer for this one
Node.js Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More Node.js MCQ Questions
Which of the following module require to create server for NodeJS?
Which of the following engine built of NodeJS framework/platform?
Which are the below NodeJS features?
Which of the following code print the name of operating system?
Which of the libs are exists in Node Core Libraries?
Which are the following debug commands to debug node server?
Consider the following javascript code. console.log('first'); setTimeout(function() { console.log('second'); }, 0); console.log('third'); What will be the output?
What output will this code produce in the console? const EventEmitter = require('events'); const myEmit = new EventEmitter(); myEmit.on('slick', () => {}); myEmit.on('key', () => {}); const symbol = Symbol('init'); myEmit.on(symbol, () => {}); console.log(myEmit.eventNames());
Which of the following code converts a buffer buf to JSON object?
Which of the following code gets length of a buffer buf?