dataContexts can be thought of as global variables. The advantages over SSJS functions are:
1) The dataContext runs the SSJS / Java / whatever are returns the value. References to the dataContext use EL (e.g. #{myVar}), the same as datasources. So my understanding is that the EL gets the value, rather than running the SSJS / Java code each time. So there's a performance benefit there.
2) The dataContext's value can be computed dynamically or on page load. So you can use ${javascript:@Today()} and run it once rather than running a function each time.
I suspect there's also a performance benefit because references to dataContexts use EL. So at no point in the references do you run SSJS, so it's not having to go through the SSJS parser.
The additional benefit of dataContexts is they can be scoped to any level that datasources can - so XPage, Custom Control or Panel. This gives them an advantage over viewScope. So youo can also set a dataContext in a panel in a repeat control, to avoid multiple references to a NotesDocument's field or concatenation of fields.
I've tended to avoid storing Domino objects in dataContexts, mainly because of the inherent risks of recycling. I don't know if there's an issue, I'