Skip to content

Instantly share code, notes, and snippets.

@ama-ch
Last active August 4, 2016 12:17
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 ama-ch/d568c3aa61a9ae036f422662bf1ebb01 to your computer and use it in GitHub Desktop.
Save ama-ch/d568c3aa61a9ae036f422662bf1ebb01 to your computer and use it in GitHub Desktop.
// 他の言語でありそうなコード
response = get('https://api.github.com'); # レスポンスが帰るまで待つ
print(response);
// JS(jQuery)
$.get('https://api.github.com', function(response) {
console.log(response);
});
// ES6
$.get('https://api.github.com', (response) => console.log(response));
// body要素をクリックしたらアラートを表示
document.body.addEventListener('click', function() {
alert('click!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment