Created
November 30, 2019 08:49
-
-
Save chococrunch2021/62eaf05780f0510320b54560ba2a2e48 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/keruhiz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
//특정 시간 후에 함수를 1번만 실행하는 녀석 | |
var SECONDS=1000; | |
var id2=setInterval(function(){ | |
console.log("1초마다 실행"); | |
},SECONDS); | |
setTimeout(function(){ | |
clearInterval(id2); | |
},3000) | |
var a=escape("초콜릿"); | |
console.log(a); | |
var b=unescape(a); | |
console.log(b); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">//특정 시간 후에 함수를 1번만 실행하는 녀석 | |
var SECONDS=1000; | |
var id2=setInterval(function(){ | |
console.log("1초마다 실행"); | |
},SECONDS); | |
setTimeout(function(){ | |
clearInterval(id2); | |
},3000) | |
var a=escape("초콜릿"); | |
console.log(a); | |
var b=unescape(a); | |
console.log(b); | |
</script></body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//특정 시간 후에 함수를 1번만 실행하는 녀석 | |
var SECONDS=1000; | |
var id2=setInterval(function(){ | |
console.log("1초마다 실행"); | |
},SECONDS); | |
setTimeout(function(){ | |
clearInterval(id2); | |
},3000) | |
var a=escape("초콜릿"); | |
console.log(a); | |
var b=unescape(a); | |
console.log(b); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment