Doubts about the export of es6?

Why can"t export {name:"234"} do this during modular export?

it must be var a = {name: "234"} export {a}.

Apr.19,2022

http://es6.ruanyifeng.com/-sharpdo...

{name:'123'} is the syntax of js object, but not the export syntax of es6 module
export syntax:
export {a, b} or export {an as c, b} or export const a = 1

export default is a

that can export a js object.
  

default

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3a732-2c21c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3a732-2c21c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?