Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 129 Bytes

File metadata and controls

10 lines (6 loc) · 129 Bytes
const a = ['string']
a.toString() // "string"

a.push({"property": "123"})

a.toString() // "string",[object Object]