Code:
// title set to "foo" by default
var win = nw.Window.get();
console.log(win.title);
win.title = 'bar';
console.log(win.title);
Expected output:
foo
bar
Actual output:
foo
foo
According to the manual:
win.title
Get or set window’s title.
Source: http://docs.nwjs.io/en/v0.13.0-rc3/References/Window/#wintitle