Skip to content

Instantly share code, notes, and snippets.

@Dmitriy-8-Kireev
Created January 15, 2019 20:43
Show Gist options
  • Save Dmitriy-8-Kireev/8ad8dfada638a3388dade8acd1f67ad7 to your computer and use it in GitHub Desktop.
Save Dmitriy-8-Kireev/8ad8dfada638a3388dade8acd1f67ad7 to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!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">
// Сейчас console выводит "undefined", нужно это исправить
function Bomb(message, delay) {
this.message = message;
setTimeout(() => {this.blowUp()}, delay * 1000); // взрываем через delay sec
}
Bomb.prototype.blowUp = function () {
console.log(this.message);
};
new Bomb("Allahu akbar!", 0.5);
</script>
<script id="jsbin-source-javascript" type="text/javascript">// Сейчас console выводит "undefined", нужно это исправить
function Bomb(message, delay) {
this.message = message;
setTimeout(() => {this.blowUp()}, delay * 1000); // взрываем через delay sec
}
Bomb.prototype.blowUp = function () {
console.log(this.message);
};
new Bomb("Allahu akbar!", 0.5);</script></body>
</html>
// Сейчас console выводит "undefined", нужно это исправить
function Bomb(message, delay) {
this.message = message;
setTimeout(() => {this.blowUp()}, delay * 1000); // взрываем через delay sec
}
Bomb.prototype.blowUp = function () {
console.log(this.message);
};
new Bomb("Allahu akbar!", 0.5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment