I have seen two ways of defining functions/objects when reviewing javascript in Protractor:
One looks like this:
name1: { get: function() { return element.all(by.css('.mything')); }},
Another looks like this:
name2: { value: function() { return element.all(by.css('.files')); }}
Can someone please explain what the difference is between the use of VALUE vs GET with defining Page Objects?