Refs and Google Closure Compiler

The React docs recommends accessing refs using brackets for Google Closure Compiler.
For example:

this.refs['myRefString']
vs
this.refs.myRefString

Most of the Meteor examples I’ve seen use the latter approach. How does Google Closure apply to Meteor?