This commit is contained in:
2022-11-11 16:29:38 +09:00
commit 584f181bdb
13 changed files with 516 additions and 0 deletions

6
export/items.js Normal file
View File

@@ -0,0 +1,6 @@
const car = {
brand: "Hyundai",
model: "Sonata",
};
module.exports = car;

3
export/sample.js Normal file
View File

@@ -0,0 +1,3 @@
const car = require("./items.js");
console.log(car);