Link Search Menu Expand Document

Import a Default Export

Summary

  • When importing a default value, don’t use curly braces.

Final Code

import subtract from "./math_functions.js";
// Only change code above this line

subtract(7,4);