```js
setInterval(function () {
console.log('Hello');
}, 5000);
```
Set a breakpoint on `console.log`. Run the script with `RemoteProxy.js`, and attach to it from a local VS instance (will probably need to use the machine name rather than localhost for this). The breakpoint is marked as unbound in VS, and is not hit, despite script repeatedly printing out "Hello".
setInterval(function () {
console.log('Hello');
}, 5000);
```
Set a breakpoint on `console.log`. Run the script with `RemoteProxy.js`, and attach to it from a local VS instance (will probably need to use the machine name rather than localhost for this). The breakpoint is marked as unbound in VS, and is not hit, despite script repeatedly printing out "Hello".