I want to push objects to an array but it should not convert keys of objects to strings. Is there any way to push objects to an array without affecting keys.
/// required value:
const myArray = [
{title:'my array'}
]
/// instead gets
const myArray = [
{'title':'my array'}
]