rbind


rbind(r, obj)
      

Bind the object obj to the reactive variable r.

Return void.

Examples:


let a = ?
rbind(a, 100)
?a
// 100
rget(a)
// 100
rbind(a, 200)
//> error: cannot rebind reactive variable to a new value
      

Also see:

rget


Core Module Index | Contents