Skip to content

Instantly share code, notes, and snippets.

@pafnuty
Created June 23, 2014 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pafnuty/0e3de555707f26432b64 to your computer and use it in GitHub Desktop.
Save pafnuty/0e3de555707f26432b64 to your computer and use it in GitHub Desktop.
ajrec c aeyrwbtq
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
'use strict';
var JSCourses = {
title: 'HTML',
show: function () {
console.log(this.title);
}
}
var THNLourses = {
title: 'HTML1',
show: function () {
console.log(this.title);
}
}
var c = 0;
setTimeout(function funny () {
console.log(c++);
setTimeout(funny, 1000);
}, 1000);
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment