I have the follow object:
formData : { _id: "550de8956e2d0948080e220f" category: "Tag1" isFeatured: "Yes" likeCount: 557 title: "Integrating WordPress with Your Website" }
I tried JavaScript but it returned a null value:
var arryFormData = Array.prototype.slice.call(formData)
How can I convert formData into an array of just its values, not properties?
As in ...
arryFormData = ["550de8956e2d0948080e220f", "Tag1", "Yes", 557, "Integrating WordPress with Your Website"]