 
                     
                    window.alert('test');  ===  alert('test');
function window_encode_decode() {
    var str = 'Hellow IDE?';
    var enc = window.btoa(str);
    var dec = window.atob(enc);
    var res = 'Encoded String: ' + enc + '\n' + 'Decoded String: ' + dec;
    alert(res);
}
                                   
var result = confirm("Confirm");
                                    
var name= prompt('name');
alert('your name: ' + name);
                                    
window.print();
                                    
function window_open() {
    myWindow = window.open("","","width=200,height=100");
}
                                    
window.close();
                                    
window.focus();
                                    
window.blur();
                                    
window.moveTo(250,250);
                                    
window.moveTo(0,0);
                                    
window.resizeBy(250,250);
                                    
window.resizeTo(250,250);
                                    
window.scrollBy(100,0);
                                    
window.scrollTo(500,0);
                                    
var timeoutID = setTimeout( function() { 'logic' }, 1000 );
                                    
clearTimeout(timeoutID);
                                    
var intervalID = setInterval( function() { 'logic' }, 1000 );
                                    
clearInterval(intervalID);
                                    window.screen === screenwindow.location === screen
location.assign("http://leechwin.tistory.com");
                                    
location.reload();
                                    
location.replace("http://www.tizenschools.com");
                                    window.navigator === navigator
navigator.javaEnabled();
                                    window.history === history
history.go(-1);
                                    
history.back();
                                    
history.forward();