Skip to Content
Test-Driven JavaScript Development
book

Test-Driven JavaScript Development

by Ravi Kumar Gupta
December 2015
Intermediate to advanced
240 pages
4h 57m
English
Packt Publishing
Content preview from Test-Driven JavaScript Development

Observer with topics

Topics in the observer pattern contains more than one observable objects. Normally, it can happen that we need to create multiple observable objects in some situation. In that case, it is better that we use topic functionality of the observer pattern. Example of topics in the observer pattern is as follows:

var Observable = { users: [], addUser: function(item, observer) { this.users[item] || (this.observers[topic] = []) this.users[item].push(observer) }, removeUser: function(item, observer) { if (!this.users[item]) return; var index = this.users[item].indexOf(observer) if (~index) { this.users[item].splice(index, 1) } }, notifyUsers: function(item, note) { if (!this.users[item]) return; for (var i = this.users[item].length ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Test-Driven JavaScript Development

Test-Driven JavaScript Development

Christian Johansen
Front-End Development Projects with Vue.js

Front-End Development Projects with Vue.js

Raymond Camden, Hugo Di Francesco, Clifford Gurney, Philip Kirkbride, Maya Shavin, Dániel Szabó

Publisher Resources

ISBN: 9781782174929Supplemental Content