7 lines
77 B
JavaScript
7 lines
77 B
JavaScript
const car = {
|
|
brand: "Hyundai",
|
|
model: "Sonata",
|
|
};
|
|
|
|
module.exports = car;
|