Approach 2 Using Arrow Function

Arrow functions in JavaScript offer a more streamlined way to write functions, featuring a simplified syntax, implicit return for single expressions, and lexical scoping of the `this` keyword.

Example: A basic route, employs an arrow function for a more succinct syntax. It establishes a route for the root URL and delivers the “Hello, World!” response in just one line.

Javascript




const express = require('express');
const app = express();
 
app.get('/', (req, res) => res.send('<h1>Hello, World!</h1>'));
 
app.listen(8000, () => console.log('Server listening on port 8000'));


Output:

Output

Print hello world using Express JS

In this article, we will learn how to print Hello World using Express jS. Express JS is a popular web framework for Node.js. It provides various features that make it easy to create and maintain web applications.

Similar Reads

Express Js Program to Print Hello world:

“Hello, World!” in Express JS serves as an excellent entry point to familiarize yourself with the framework and embark on the exploration of its functionalities. Moreover, it provides a gratifying experience, allowing you to immerse yourself in the excitement of coding and initiate your path as an Express.js developer....

Approach 1: Using Basic Routes:

It is simple to print Hello World by defining a root URL (“/”). When a GET request is made to the root URL, the server responds with “Hello, World!”....

Approach 2: Using Arrow Function:

...

Approach 3: Using Middleware:

Arrow functions in JavaScript offer a more streamlined way to write functions, featuring a simplified syntax, implicit return for single expressions, and lexical scoping of the `this` keyword....

Contact Us