Trong các bài viết trước jsB@nk đã giới thiệu với bạn rất nhiều kĩ thuật lập trình JavaScript hữu ích:
- Các kĩ thuật viết mã JavaScript giản lược thiết yếu
- Các thủ thuật JavaScript và jQuery hữu ích
- Vài hướng dẫn JavaScript cơ bản để tối ưu hóa hiệu suất trang web
Hôm nay trong bài viết này, jsB@nk muốn đề cập đến các kĩ thuật lập trình JavaScript giản lược (shorthand); các kĩ thuật này cực kì hữu ích trong việc cải thiện hiệu suất ứng dụng JavaScript, nâng cao kĩ năng lập trình JavaScript mà mỗi lập trình viên JavaScript cần nắm vững.
Bạn đã sẵn sàng để đọc thêm chưa? Hãy để lại bất cứ đề nghị nào trong phần bình luận.
- 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é!
This really is a must read for any JavaScript based developer. I have made this post as a vital source of reference for learning shorthand JavaScript coding techniques. I have shown you the longhanded versions as well to give some coding perspective.
- Step 1 – Learn the JavaScript shorthand techniques.
- Step 2 – Save valuable coding time by keeping your code to a minimum.
- Step 3 – Impress your colleagues with your awesome coding skills.
It’s as easy as 1,2,3. Here they are.
1. If true … else Shorthand
This is a great code saver for when you want to do something if the test is true, else do something else by using the ternary operator.
Longhand:
var big; if (x > 10) { big = true; } else { big = false; }
Shorthand:
var big = (x > 10) ? true : false;
If you rely on some of the weak typing characteristics of JavaScript, this can also achieve more concise code. For example, you could reduce the preceding code fragment to this:
var big = (x > 10);
2. Null, Undefined, ” Checks Shorthand
When creating new variables sometimes you want to check if the variable your referencing for it’s value isn’t null or undefined. I would say this is a very common check for JavaScript coders.
Longhand:
if (variable1 !== null || variable1 !== undefined || variable1 !== '') { var variable2 = variable1; }
Shorthand:
var variable2 = variable1 || '';
Don’t believe me? Test it yourself (paste into Firebug and click run):
//null value example var variable1 = null; var variable2 = variable1 || ''; console.log(variable2); //output: '' (an empty string) //undefined value example var variable1 = undefined; var variable2 = variable1 || ''; console.log(variable2); //output: '' (an empty string) //normal value example var variable1 = 'hi there'; var variable2 = variable1 || ''; console.log(variable2); //output: 'hi there'
3. Object Array Notation Shorthand
Useful way of declaring small arrays on one line.
Longhand:
var a = new Array(); a[0] = "myString1"; a[1] = "myString2"; a[2] = "myString3";
Shorthand:
var a = ["myString1", "myString2", "myString3"];
4. Associative Array Notation Shorthand
The old school way of setting up an array was to create a named array and then add each named element one by one. A quicker and more readable way is to add the elements at the same time using the object literal notation.
Longhand:
var skillSet = new Array(); skillSet['Document language'] = 'HTML5'; skillSet['Styling language'] = 'CSS3'; skillSet['Javascript library'] = 'jQuery'; skillSet['Other'] = 'Usability and accessibility';
Shorthand:
var skillSet = { 'Document language' : 'HTML5', 'Styling language' : 'CSS3', 'Javascript library' : 'jQuery', 'Other' : 'Usability and accessibility' };
Don�t forget to omit the final comma otherwise certain browsers will complain (not naming any names, IE).
5. charAt() Shorthand
You can use the eval() function to do this but this bracket notation shorthand technique is much cleaner than an evaluation, and you will win the praise of colleagues who once scoffed at your amateur coding abilities!
Longhand:
"myString".charAt(0);
Shorthand:
"myString"[0]; // Returns 'm'
6. Assignment Operators Shorthand
Assignment operators are used to assign values to JavaScript variables and no doubt you use arithmetic everyday without thinking (no matter what programming language you use Java, PHP, C++ it’s essentially the same principle).
Longhand:
x=x+1; minusCount = minusCount - 1; y=y*10;
Shorthand:
x++; minusCount --; y*=10;
Other shorthand operators, given that x=10 and y=5, the table below explains the assignment operators:
x += y //result x=15 x -= y //result x=5 x *= y //result x=50 x /= y //result x=2 x %= y //result x=0
7. Regex Object Shorthand
In Javascript, a Regex object can be called like a function like so:
/test/("is test in here")
As opposed to the more verbose(but sometimes more appropriate in cases that you are reusing the Regex).
Longhand:
searchText = "padding 1234 rocket str austin TX 78704 more padding" /\d+.+\n{0,2}.+\s+[A-Z]{2}\s+\d{5}/m(searchText) //returns: ["1234 rocket str austin TX 78704"]
Shorthand:
var re = new RegExp(/\d+.+\n{0,2}.+\s+[A-Z]{2}\s+\d{5}/m); re.exec(searchText); //returns: ["1234 rocket str austin TX 78704"]
8. If Presence Shorthand
This might be trivial, but worth a mention. When doing “if checks” assignment operators can sometimes be ommited.
Longhand:
if (likeJavaScript == true)
Shorthand:
if (likeJavaScript)
Here is another example. If “a” is NOT equal to true, then do something.
Longhand:
var a; if ( a != true ) { // do something... }
Shorthand:
var a; if ( !a ) { // do something... }
9. Function Variable Arguments Shorthand
Object literal shorthand can take a little getting used to, but seasoned developers usually prefer it over a series of nested functions and variables. You can argue which technique is shorter, but I enjoy using object literal notation as a clean substitute to functions as constructors.
Longhand:
function myFunction( myString, myNumber, myObject, myArray, myBoolean ) { // do something... } myFunction( "String", 1, [], {}, true );
Shorthand (looks long but only because I have console.log’s in there!):
function myFunction() { console.log( arguments.length ); // Returns 5 for ( i = 0; i < arguments.length; i++ ) { console.log( typeof arguments[i] ); // Returns string, number, object, object, boolean } } myFunction( "String", 1, [], {}, true );
10. JavaScript foreach Loop Shorthand
This little tip is really useful if you want plain JavaScript and hence can’t use the awesome jQuery.each.
Longhand:
for (var i = 0; i < allImgs.length; i++)
Shorthand:
for(var i in allImgs)
11. Suggest one?
I really do love these and would love to find more, please leave a comment!
- 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
Lots of bad advice Phản hồi
10. Don't ever use for in to loop over arrays http://stackoverflow.com/questions/500504/javascript-for-in-with-arrays
9. Unclear what you're showing, are you just showing how to use arguments?
7. What you suggested is not shorter.
5. bracket access instead of charAt is not cross browser.
4. Associative Array is not a JS object, JS has objects, that are hash maps, they are not like PHP's associative array, therefore, you shouldn't use new Array()
2. The two pieces of code are not equivalent: in the first one, variable2 will be undefined if variable1 is null; in the second case, it will become the empty string