Difference Between Default & Named Exports in JavaScript Last Updated : 24 Jan, 2025 Comments Improve Suggest changes Like Article Like Report In JavaScript, exports allow you to share code between modules. There are two main types: default exports and named exports.Used to export functions, objects, or variables.Default exports allow importing with any name.Named exports require importing by the exact name.Named ExportsNamed exports let us export several things from a module, giving each one a specific name. This makes it clear which thing we're importing into other modules. Named exports are useful when we need to share multiple functionalities. JavaScript // math.js: export function add(a, b) { return a + b; } export function subtract(a, b) { return a - b; } JavaScript // app.js: import { add, subtract } from './math.js'; console.log(add(2, 3)); console.log(subtract(5, 2)); Exporting Functions: In math.js, we define two functions, add and subtract, and export them using the export keyword.Importing Functions: In app.js, we import the add and subtract functions from math.js using their exact names enclosed in curly braces {}.Using Imported Functions: We then use these imported functions to perform calculations and log the results.Output:53Default ExportsDefault exports in JavaScript allow a module to export a single value or entity as the default export. Unlike named exports, which allow you to export multiple values from a module, default exports allow you to export only one value per module. JavaScript // math.js //Exporting a function as the default export export default function add(a, b) { return a + b; } JavaScript //app.js // Importing the default export import addFunction from './math.js'; console.log(addFunction(2, 3)); Exporting: In math.js, the add function is exported as the default export using the export default syntax.Importing: In app.js, the default export is imported without curly braces, and you can assign any name to it—in this case, addFunction.Usage: The imported function is then called with arguments 2 and 3, resulting in the output 5.Output:5Named and Default Exports TogetherIn JavaScript, you can combine named exports and a default export within the same module. This approach allows you to export multiple functionalities, with one serving as the primary export and others as supplementary exports.Example: The below code explain Named and Default Exports Together. JavaScript // utils.js // Named exports export function square(x) { return x * x; } export function double(x) { return x * 2; } // Default export export default function greet(name) { return `Hello, ${name}!`; } JavaScript // main.js // Importing both named and default exports import greet, { square, double } from './math.js'; console.log(greet('Alice')); console.log(square(4)); console.log(double(5)); Output:Hello, Alice! 1610Difference between Named exports and Default exportsNamed exportsDefault exports With named exports, you can export multiple variables, functions, or classes from a single module.Default export is used to export a single value from a module. This value can be a function, object, class, etc.Each exported entity is given a name, and you import them using those exact names.Unlike named exports, there can only be one default export per module.To export a variable, function, or class using named exports, you typically use the export keyword followed by the name of the entity you want to export.To export a value as the default export, you typically use the export default syntax.When importing named exports, you enclose the names in curly braces {} and use the exact names specified during export.When importing the default export, you don't need to use curly braces {}. Instead, you can specify any name for the imported value. Comment More infoAdvertise with us Next Article Difference Between Default & Named Exports in JavaScript tuhin_114 Follow Improve Article Tags : JavaScript Web Technologies JavaScript-Questions Similar Reads Difference between function expression vs declaration in JavaScript Function Declaration: A Function Declaration( or a Function Statement) defines a function with the specified parameters without requiring a variable assignment. They exist on their own, i.e, they are standalone constructs and cannot be nested within a non-function block. A function is declared using 1 min read Difference between Anonymous and Named functions in JavaScript In JavaScript or in any programming language per say, functions, loops, mathematical operators and variables are the most widely used tools. This article will tell you about the difference between anonymous functions and named functions. We will discuss all the required concepts in this article to k 4 min read What is export default in JavaScript ? JavaScript modules allow you to organize code into separate files, making it easier to maintain and reuse. To share code between modules, JavaScript provides two types of exports: Named Exports and Default Exports. Understanding how and when to use these export types is key to effectively managing m 3 min read Difference between Node.js and JavaScript JavaScript and Node.js are both crucial in modern web development, but they serve different purposes and are used in different environments. JavaScript is a programming language primarily used for client-side web development, while Node is a runtime environment that allows JavaScript to be executed 3 min read What is the difference between export.create and router.post? export.create and router.post are used in the context of backend frameworks like Express JS. They both are used for handling HTTP requests and operate at different levels within the framework. In this article we will learn about export.create and router.post and see the key differences between them. 3 min read How to share code between files in JavaScript ? JavaScript is a powerful and popular programming language that is widely used for web development. One of the key features of JavaScript is its ability to share code between files. This can be useful for organizing large projects, reusing code, and maintaining code quality. In this article, we'll se 6 min read Differece between JavaScript Modules & NgModule Modules play an important role in structuring and organizing the code of Javascript and Angular.js. They help us to use the code efficiently. Majorly NgModule in Angular.js and Modules in Javascript are widely used in different scenarios. In this article, We will learn about Modules and their import 5 min read What is the Difference Between a Module & a Namespace in JavaScript ? The dynamic web's programming language, JavaScript, has changed significantly over time. "Modules" and "Namespaces" are two particularly important architectural elements that have aided in the development of code organization. Modules in JavaScriptModules enable the control and organization of large 3 min read Difference Between --save and --save-dev in NodeJS In NodeJS, when you install packages using npm (Node Package Manager), you often need to decide whether to install them as a dependency or devDependency. This is where the flags --save and --save-dev come into play. These flags control where the installed packages are placed in the package.json file 5 min read Difference Between Internal & External Modules in TypeScript In TypeScript, modules are a way to organize code and encapsulate functionality. There are two types of modules: internal modules (also known as namespaces) and external modules (also known as modules). Internal Modules (Namespaces):Internal modules, known as namespaces, provide a way to organize co 2 min read Like