You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest: @param {object} originalObject @param {object} otherObject[0..] // zero indicating optional, so its 0...n other objects @param {object} otherObject[1..3] // 1 to 3 other objects
The text was updated successfully, but these errors were encountered:
Imagine:
.extend( originalObject, otherObject, otherObject ... );
// extends an object with other objects like in:
.extend( {}, { a: 1 }, { b: 2 }, { c: 3 } );
// -> { a: 1 , b: 2 , c: 3 }
I suggest:
@param {object} originalObject
@param {object} otherObject[0..] // zero indicating optional, so its 0...n other objects
@param {object} otherObject[1..3] // 1 to 3 other objects
The text was updated successfully, but these errors were encountered: