Đọc tiêu đề của bài viết này, hẳn bạn sẽ nghĩ ngay đến điều xấu xa, ghê tởm theo đúng bản chất ngữ nghĩa của từ "mặt tối". Nhưng đây cũng chỉ là một cách đặt tựa đề của tác giả sau một quá trình nghiên cứu kĩ lưỡng ngôn ngữ lập trình JavaScript và thư viện jQuery để thấy được mặt hạn chế, yếu điểm của ngôn ngữ này. Vui lòng vào bài viết chi tiết để xem thêm.
- Demo
- Phóng to
- Tải lại
- Cửa sổ mới
Miễn phí web hosting 1 năm đầu tại iPage
Nếu bạn vẫn còn đang tìm kiếm một nhà cung cấp hosting đáng tin cậy, tại sao không dành chút thời gian để thử với iPage, chỉ với không quá 40.000 VNĐ/tháng, nhưng bạn sẽ được khuyến mãi kèm với quà tặng trị giá trên 10.000.0000 VNĐ nếu thanh toán cho 24 tháng ~ 900.000 VNĐ?
Có trên 1 triệu khách hàng hiện tại của iPage đã & đang hài lòng với dịch vụ, tuyệt đối chắc chắn bạn cũng sẽ hài lòng giống họ! Quan trọng hơn, khi đăng ký sử dụng web hosting tại iPage thông qua sự giới thiệu của chúng tôi, bạn sẽ được hoàn trả lại toàn bộ số tiền bạn đã sử dụng để mua web hosting tại iPage. Wow, thật tuyệt vời! Bạn không phải tốn bất kì chi phí nào mà vẫn có thể sử dụng miễn phí web hosting chất lượng cao tại iPage trong 12 tháng đầu tiên. Chỉ cần nói chúng tôi biết tài khoản của bạn sau khi đăng ký.
Nếu muốn tìm hiểu thêm về ưu / nhược điểm của iPage, bạn hãy đọc đánh giá của ChọnHostViệt.com nhé!
When I started to go deep into jQuery, I started to realize that many of JavaScript concepts doesn't make sense the way I understood it. So I started my journey into the dark side of JavaScript and here is a summary of what I learned:
-JS is a Prototype based language which means that In JS there is no class concept, we can't define classes and instantiate objects of those classes,This means that to instantiate an object we have to use the build in object type Object or the other build in object type Function (more about this later)
-A JS object is an unordered collection of properties (a JS object is like an Hash Map in other programming languages)
-The following code show how to create and manipulate an object in different ways
// Create object var emp = new Object(); // assign properties to the object // we can use dot operator emp.name = "John" // or we can use general reference operator emp["address"] = "somewhere on earth"; // we can only use general reference operator with non valid JS identifiers emp["flat number"] = 3;
-Using JSON (JavaScript Object notation) we can construct JS objects , the following code construct the above object
var emp = {name:"John" , address:"somewhere on earth" , "flat number":3};
-Top level variables defined outside the scope of any function or variables declared without the var keyword are properties of the pre-defined JS window object
var foo = "foo"; // same as window.foo function doSomething() { bar = "bar"; // same as window.bar }
-In JS Functions are considered objects this means functions can be assigned to variables and have properties, actually a function name is not really the name of the function but the name of the reference that points to the instance a function object
function doSomething() { } // this is equivalent to var doSomething2 =function() { } // this will diplay "function" alert(typeof(doSomething));
-Since functions are objects so they can have properties
var doSomething =function() { } doSomething.foo = "foo"; doSomething["bar"] = bar;
-functions can also be assigned to properties of an object
function doSomething() { } var emp = new Object(); emp.name = "John" emp["address"] = "somewhere on earth"; // here we are referencing an anonymous function emp.computeSalary = function() {}; // here we are referencing an existing functions emp.otherFunction = doSomething; // calling those functions emp.computeSalary(); emp.otherFunction();
in this articles we will examine mainly the this keyword, lets have a look at the following piece of code
01 | var o1 = {msg: 'I am object 1' }; |
02 | var o2 = {msg: 'I am object 2' }; |
03 | var o3 = {msg: 'I am object 3' }; |
04 |
05 | window.msg = 'I am window object' ; |
06 |
07 | function showMsg() { |
08 | return this .msg; |
09 | } |
10 | showMsg.msg = 'I am function showMsg' ; |
11 | alert(showMsg()); |
at line 8 what the keyword this actually refers too?
In other programming languages like Java or C#, this refers to the instance of the class within which the method has been declared.so if this is also true for JS this.msg will refer to the showMsg.msg property at line 10 since a function is an object in JS but this is not true.
In JavaScript, where functions are objects and aren't declared as part of anything, the object referenced by this is called the function context and is determined by how the function is invoked not by how its declared.This means that the same function can have different contexts depending on which object calls it.
Top level functions that are not assigned to any object will have the built in window object as the function context, so the above code at line 11 alert(showMsg()); will display window.msg property 'I am window object' as defined in line 5.
lets look at the rest of the code
1 | o1.showMsg = showMsg; |
2 | alert(o1.showMsg()); // display 'I am object 1' |
3 | alert(showMsg.call(o2)); // display 'I am object 2' |
4 | alert(showMsg.apply(o3)); // display 'I am object 3' |
At line 1 we assigned the showMsg function to object o1, so in line 2 function showMsg is invoked and o1 is passed to it as its function context. in line 3 and 4 We can set the function context to whatever we want by invoking a function via the Function methods call() or apply(). since functions are object they too can have functions. The call function invokes the function specifying, as its first parameter, the function context, while the remaining parameters become the parameters of the called function i.e. the second parameter to call becomes the first argument of the called function and so on. The apply method works in a similar fashion except that its second parameter is an array of objects that become the arguments to the called function.
now lets take a look at how to use a function as a constructor to an object
1 | function MyObject() { |
2 | this .x = 10; |
3 | } |
4 | var o1 = new MyObject(); |
At line 4 we are constructing a JS object using MyObject as a constructor to this object , this code is equivalent to the following code
1 | function MyObject() { |
2 | this .x = 10; |
3 | } |
4 | var o1 = new Object(); |
5 | MyObject.call(o1); |
- Lượt gửi (0)
- Mới
Tạo video doanh nghiệp của bạn bằng AI chỉ với giọng nói hoặc văn bản
chatGPTaz.com
Nói chuyện với ChatGPT bằng ngôn ngữ mẹ đẻ của bạn
Ứng dụng AI Video
Ứng dụng video AI MIỄN PHÍ đầu tiên của bạn
Deepfake Video
Deepfake AI Video Maker
Deepfake
Deepfake AI Video Maker
AI Deep Fake
Deepfake AI Video Maker
AIvidio
AI Video Mobile Solutions
AIvideos
AI Video Platform & Solutions
AIvedio
AI Video App Maker
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Temu tặng $500 cho người dùng mới
Claim Free Temu $500 Credit via Affiliate & Influencer Program
Tín dụng quảng cáo TikTok miễn phí
Làm chủ quảng cáo TikTok cho hoạt động tiếp thị doanh nghiệp của bạn
Dall-E-OpenAI.com
Tự động tạo ra hình ảnh sáng tạo với AI
chatGPT4.win
Nói chuyện với ChatGPT bằng ngôn ngữ mẹ đẻ của bạn
Sản phẩm AI đầu tiên của Elon Musk - Grok/UN.com
Nói chuyện với Grok AI Chatbot bằng ngôn ngữ của bạn
Công cụ.win
Mở trung tâm công cụ miễn phí để mọi người sử dụng với hàng trăm công cụ
GateIO.gomymobi.com
Airdrop miễn phí để nhận, chia sẻ lên đến 150.000 đô la cho mỗi dự án
iPhoneKer.com
Tiết kiệm tới 630$ khi mua iPhone 16 mới
Mua Robot Tesla Optimus
Đặt mua Tesla Bot: Robot Optimus Gen 2 ngay hôm nay với giá dưới 20.000 đô la