Skip to content

Instantly share code, notes, and snippets.

@anhnt
Last active August 29, 2015 14: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 anhnt/46d868b19fed70353116 to your computer and use it in GitHub Desktop.
Save anhnt/46d868b19fed70353116 to your computer and use it in GitHub Desktop.
Câu 1. Bạn hãy cho biết đoạn code sau sẽ in ra gì ở Javascript console
(function($){
$(function(){
var a = 1;
b = 2;
window.c = 3;
});
})(jQuery);
console.log(a);
a = 4;
console.log(a);
console.log(b);
console.log(c);
Câu 2. Bạn hãy cho biết trong jQuery thì $('.classname') và $('#id') thì câu lệnh nào tối ưu hơn?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment