// Regular Expression (RegExp) console.log('Keshav string'); //String literal console.log(`Keshav backtick`) //Backtick literal // let reg = /keshav/; //Regular expression literal in JS // console.log(reg); // /keshav/ // console.log(reg.source); // keshav // 1. exec() - This function will return an array for match or null for no math /* let paragraphOne = "This is great code with keshav and also keshav bhai" reg = /keshav/g //'g' flag means will search this term in the entire paragraph let result = reg.exec(paragraphOne); console.log(result); // index: 24 result = reg.exec(paragraphOne); console.log(result); // index: 40 result = reg.exec(paragraphOne); console.log(result); // null */ /* let paragraphTwo = "This is great code with keShav and also KeSHav bhai"; let reg = /keshav/i // 'i' flag for case-sensitive let result = reg.exec(paragraphTwo); console.log(result); console.log(result.input); //This is great code with Keshav and also Keshav bhai console.log(result.index); //24 */ // 2. test() - Returns true or false let paragraphThree = "This is great code with keshav and also keshav bhai"; let result = re.test(paragraphThree); console.log(result);
Write, Run & Share NodeJS code online using OneCompiler's NodeJS online compiler for free. It's one of the robust, feature-rich online compilers for NodeJS language,running on the latest LTS version NodeJS 16.14.2. Getting started with the OneCompiler's NodeJS editor is easy and fast. The editor shows sample boilerplate code when you choose language as NodeJS and start coding. You can provide the dependencies in package.json
.
Node.js is a free and open-source server environment. Node.js is very popular in recent times and a large number of companies like Microsoft, Paypal, Uber, Yahoo, General Electric and many others are using Node.js.
Google chrome's javascript engine V8
and is pretty fast.Asynchronous
, event-driven
and works on single-thread model
thus eliminating the dis-advantages of multi-thread model.Express is one of the most popular web application framework in the NodeJS echosystem.
let moment = require('moment');
console.log(moment().format('MMMM Do YYYY, h:mm:ss a'));
const _ = require("lodash");
let colors = ['blue', 'green', 'yellow', 'red'];
let firstElement = _.first(colors);
let lastElement = _.last(colors);
console.log(`First element: ${firstElement}`);
console.log(`Last element: ${lastElement}`);
Following are the libraries supported by OneCompiler's NodeJS compiler.