Hello, I'd like to create a function that accepts two objects and compares properties between them. Example
public boolean (obj1, obj2){
if obj1.property1 = obj2.property2
return true
else
return false
}
How can I do this?