This is my code:
function test(tlm) {
var soundtimer = 'success';
var type = tlm.replace('send','');
var timer = window[type+'timer'];
console.log(timer);
}
test('sendsound');
I should get success
but I get undefined instead. Why is that?