Javascript – function for making a string out of an object
I need to make a function that generates a string from an object's key/value pairs. The string should be : "key = value, key = value". with spacing around the = and each key/value pair separated by a comma and…