var ifrm=document.createElement("iframe");
ifrm.textContent="iframeを表示できません";
ifrm.src="http://jbs.shitaraba.net/";
document.body.appendChild(ifrm);
var x=5;
function a(){function a2(){console.log("a:"+x);}var x=1;a2();}
function b(){var x=2;setTimeout(function(){console.log("b:"+x);},1);}
b();
a();