Skip to content

Instantly share code, notes, and snippets.

@haerang94
Created December 17, 2019 18:16
Show Gist options
  • Save haerang94/4d7017f398b9f8da6d83ab0888e44d38 to your computer and use it in GitHub Desktop.
Save haerang94/4d7017f398b9f8da6d83ab0888e44d38 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/tacimanoxe
<!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">
var student={};
student.toString=function(){
return '안녕하세요';
};
alert(student);
console.log(student+'...!');
</script>
<script id="jsbin-source-javascript" type="text/javascript">var student={};
student.toString=function(){
return '안녕하세요';
};
alert(student);
console.log(student+'...!');</script></body>
</html>
var student={};
student.toString=function(){
return '안녕하세요';
};
alert(student);
console.log(student+'...!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment