Meteor has a Session that provides a global object on the client that you can use to store an arbitrary set of key-value pairs. Use it to store things like the currently sel
Session.set('name', undefined) or Session.set('name', null) should work.
Session.set('name', undefined)
Session.set('name', null)