Bài viết này là những đánh giá và suy nghĩ riêng của tác giả về ngôn ngữ lập trình JavaScript 2.0; có thể thông qua bài viết này, bạn sẽ biết thêm thông tin về JavaScript như lịch sử hình thành và phát triển, đặc điểm kĩ thuật,...
- 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é!
As a developer and writer, part of my job is to stay informed of current trends
in the web world, whether it be company mergers, online-shopping trends, or
programming technologies. I'll admit that it's hard to keep up with everything
that's going on in the industry these days, but one tidbit of news is making
the rounds that is raising a lot of eyebrows: the drafting of the JavaScript
2.0 proposal. The new JavaScript 2.0 / EMCAScript 4.0, isn't due to be finalized
until the end of the fall of 2009, but it's already garnering lots of strong
reactions - both good and bad. Today, we'll be taking a look at some of the
proposed specifications and you can decide for yourself whether they constitute
improvements in the language or merely unnecessary standardization.
The JavaScript Story
To better understand how JavaScript standards are implemented, let's take a brief look at the language's history.
JavaScript is a dialect of the ECMAScript scripting language, which is standardized by Ecma International. The other two dialects are ActionScript (MacroMedia, Adobe) and JScript (Microsoft). JavaScript was originally developed by Brendan Eich of Netscape. It was originally called Mocha and then LiveScript, before finally being renamed to JavaScript. Sun Microsystems released Netscape Navigator 2.0 with support for JavaScript in March of 1996. Due to the widespread success of JavaScript as a client-side scripting language, Microsoft developed their own version of the language named JScript, which was included in Internet Explorer 3.0 release of August 1996. Netscape submitted JavaScript to Ecma International for standardization, in Geneva.
Ecma International is an international, membership-based, non-profit standards
organization for information and communication systems. The organization was
originally founded in 1961 to standardize computer systems in Europe. In the
40 odd years since its inception, Ecma has produced more than 370 Standards
and 90 Technical Reports, including CD-ROM volume and file structure, C++ Language
Specification, and their Open XML format. The first edition of ECMAScript (ECMA-262)
was adopted by the ECMA General Assembly of June 1997. Both JavaScript and JScript
aim to be compatible with ECMAScript, while providing additional features not
described in the ECMA specification. Even today, the JavaScript and JScript
dialects have as many differences as commonality. JavaScript was influenced
by Object-Oriented languages like Java and C++, but was meant to be easier for
non-programmers to work with.
Language Enhancements
More Object Oriented
Up until now, JavaScript used prototypical inheritance rather than the classical OOP kind for inheriting from parent classes. In fact, as the following code demonstrates, there currently exists no such thing as a "class" in JavaScript:
Functions double as object constructors along with their typical role. Prefixing
a function call with new
creates a new object and calls that function with its
local this
keyword bound to that object for that invocation. The function's
prototype
property determines the new object's prototype. Whatever is assigned
to an object's prototype
property is shared amongst all of its instances and
children. Using the prototype
property, it is possible to simulate many class-based
features in JavaScript, albeit with some quirks! For instance, in the following
code, myOtherDog
attempts to override the getBreed()
function of parent Dog
"class". Although the myOtherDog's getBreed() function is indeed implemented,
it does not hide the parent's, giving myOtherDog
two breeds!
Strong Typing
Like most scripting languages, JavaScript is loosely typed. The interpreter determines which data type should be used at runtime based on its value. This looseness affords the developer a lot of leeway for variable reuse and comparisons. In the latter case, type coercion is what makes comparison of two different data types possible; JavaScript automatically makes them the same type before performing the check:
In contrast, JavaScript 2.0 will be strongly typed, meaning that type declarations
will be enforced instead of being coerced by the scripting engine. A type can
be assigned to properties, function parameters / return values, variables, or
object / array initializers. If no type is defined, the variable or property
defaults to a type of Object
, which is the root of the data type hierarchy.
The syntax for applying a given type will be a colon (:) followed by the type
expression:
To perform comparisons like those above, you will need to cast the data type:
Program Units
Borrowing from popular JS Frameworks, programming units are reusable code modules that can be imported at runtime. These have become an essential component of web apps as the size of framework and custom libraries increases. Considering that some libraries contain thousands of lines of code, loading everything at once just doesn't make sense anymore. Here is the proposed code:
Compile Time Type Checking
You will have the ability to compile JavaScript 2.0 components in strict mode. This will test the integrity of several key aspects before execution, including:
- Static type checking
- Verification that referenced names are known
- Checks for illegal assignments to constants
- Insure that comparisons are only made between valid types
Constants
Previously JavaScript developers have had to either rely on naming conventions or elaborate workarounds to protect their constants, but come JavaScript 2.0, that'll be a thing of the past:
Real Namespaces
With the emergence of JS Frameworks, the use of namespaces has really become
a necessity. The standard up until now has been to create a global object to
house all of your functionality so that pre-existing global objects and functions don't get
clobbered.
Conclusion
Some of the detractors to the 2.0 proposal take issue with the movement towards classical programming languages like C++ and Java. Tom Steinert-Threlkeld voiced his concerns in a recent blog
"...the dynamic and flexible nature of JavaScript's prototypal inheritance and object model...is a practical, fundamental advantage. Why someone would want to take something so elegant and flexible and turn it into Java - which essentially forces a programmer to use classical, class-based inheritance - is beyond me."
I personally have mixed feelings about the new proposal. While I welcome changes such as classes, namespaces, and constants, I don't like the idea of strongly typed scripting variables. Overall, the language is at risk of becoming too rigid, and by extension, serious, for the average amateur programmer. Then again, maybe I should be thankful that more owners of commercial websites will require the services of a professional like me to code their business processes! Whatever the outcome, there can be little doubt that the web development landscape is about to be drastically altered!
- 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