[Javascript]3. Improve you speed! Performance Tips
- /**
- Let inheritance help with memory efficiency
- */
- function SignalFire(ID, startingLogs){
- this.fireID = ID;
- this.logsLeft = startingLogs;
- }
- SignalFire.prototype = {
- addLogs: function(numLogs){
- this.logsLeft += numLogs;
- }
- lightFire: function(){
- alert("Whooosh!");
- }
- smokeSignal: function(message){
- if(this.logsLeft < this.message.length / 10){
- alert("Not enough");
- }else{
- this.lightFire();
- var x = this.message.length;
- for(var i = 0; i < x; i++){
- alert("((("+this.message[i]+")))");
- if(i % 10 == 0 && i != 0){
- this.logsLeft--;
- }
- }
- }
- }
- }
- var fireOne = new SignalFire(1, 20);
- var fireTwo = new SignalFire(2, 18);
- var fireThree = new SignalFire(3, 14);
- fireOne.addLogs(8);
- fireTwo.addLogs(10);
- fireThree.addLogs(14);
- fireThree.smokeSignal("Goblins!");
- //The addLogs method is found in one useful place, instead of being
- //replicated across all signalFires.
- /**
- Adding individual dom elements ain't always speedy
- */
- //
- //**BAD**
- //
- var list = document.getElementById("kotwList");
- var kotw = ["Jenna Rangespike",
- "Neric Farthing",
- "Darkin Stonefield"];
- for(var i = 0, x = kotw.length; i < x; i++){
- var element = document.creatElement('li');
- element.appendChild(document.createTextNode(kotw[i]));
- list.appendChild(element);
- }
- //appendChild(); function each time this list is appened, we access the DOM
- //and cause an entire document reflow. Not as speedy as we'd like, especially
- //if we list was huge...
- /*
- Improve: Use a document fragment to insert additions all at once
- */
- var list = document.getElementById("kotwList");
- var kotw = ["Jenna Rangespike",
- "Neric Farthing",
- "Darkin Stonefield"];
- var fragment = document.createDocumentFragment();
- for(var i = 0, x = kotw.length; i < x; i++){
- var element = document.creatElement('li');
- element.appendChild(document.createTextNode(kotw[i]));
- fragment.appendChild(element);
- }
- list.appendChild(fragment);
- /*
- Improve: declare variables as few times as possible
- */
- //
- //**GOOD**
- //
- var list = document.getElementById("kotwList"),
- kotw = ["Jenna Rangespike",
- "Neric Farthing",
- "Darkin Stonefield"],
- fragment = document.createDocumentFragment(),
- element;
- for(var i = 0, x = kotw.length; i < x; i++){
- element = document.creatElement('li');
- element.appendChild(document.createTextNode(kotw[i]));
- fragment.appendChild(element);
- }
- list.appendChild(fragment);
- /**
- Efficient choices for string concatenation
- */
- //
- //**OK**
- //
- var knight = "Jenna Rangespike",
- action = " strikes the dragon with a ",
- weapon = "Halberd",
- turn = "";
- turn += knight;
- turn += action;
- turn += weapon;
- //It is ok because the code is short and clear
- //
- //**NOT GOOD ENOGUTH
- //
- var newPageBuild = ["<!DOCTYPE html>", "<html>", "<body>", "<h1>",
- *** a hundred or more other html elements***,
- "</script>", "</body>", "</html>"],
- page = "";
- for(var i = 0, x = newPageBuild.length; i < x; i++){
- page += newPageBuild[i];
- }
- //
- //**GOOD**
- //
- page = newPageBuild.join("\n");
- //Using join is much faster than using '+=' and looks simple and clear!!
[Javascript]3. Improve you speed! Performance Tips的更多相关文章
- [Javascript]1. Improve you speed! Loop optimaztion
/** Improve you loop code */ var treasureChest = { goldCoins: 10000, magicalItem : "Crown of Sp ...
- [Javascript]2. Improve you speed! Script Execution
Let's take a closer look at how a browser retrieves and acts on scripts.modern browser can parallel ...
- Android 性能优化(19)*代码优化11条技巧:Performance Tips
Performance Tips 1.In this document Avoid Creating Unnecessary Objects 避免多余的对象 Prefer Static Over Vi ...
- 转载:Why using Single Root I/O Virtualization (SR-IOV) can help improve I/O performance and Reduce Costs
Introduction While server virtualization is being widely deployed in an effort to reduce costs and o ...
- SQL Server performance tips
Refer to: http://harriyott.com/2006/01/sql-server-performance-tips A colleague of mine has been look ...
- How To Improve Deep Learning Performance
如何提高深度学习性能 20 Tips, Tricks and Techniques That You Can Use ToFight Overfitting and Get Better Genera ...
- 翻译--Blazing fast node.js: 10 performance tips from LinkedIn Mobile
1.避免使用同步代码: // Good: write files asynchronously fs.writeFile('message.txt', 'Hello Node', function ( ...
- Performance tips
HTML5 Techniques for Optimizing Mobile Performance Scrolling Performance layout-performance
- Json.NET Performance Tips
原文: http://www.newtonsoft.com/json/help/html/Performance.htm To keep an application consistently fas ...
随机推荐
- java接口传递数据的实例
我们要讲E类中的数据变化通知A类,这样通过接口F来实现.具体原理就是E的每次数据改变都让其通知接口:而A类继承接口,所以每次E的调用接口都会触发A类的数据更改事件的触发. 首先创建一个类E: publ ...
- 查看哪些ip破解你ssh密码以及次数
在互联网中,总有一些无聊的人,每天不断的猜解别人服务器的密码!作为linux服务器的管理员,我们应该了解哪些IP经常不断地扫描我们的SSH端口以尝试暴力破解,下面我们用一条命令简单列出哪些IP破解你S ...
- Java关键字transient和volatile
transient标记的变量,在进行序列化的时候,这个字段不进行序列化操作. volatile标记的变量,在进行读写时,必须强制的与内存同步,即在读的时候需要从内存中读取,写的时候也需要回写到内存中. ...
- poj2251 三维简单BFS
D - (热身)简单宽搜回顾 Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Subm ...
- mysql 日期时间运算函数(转)
DAYOFWEEK(date) 返回日期date是星期几(1=星期天,2=星期一,……7=星期六,ODBC标准)mysql> select DAYOFWEEK('1998-02-03'); ...
- iOS学习之界面间传值
/** * 界面间传值步骤 1.界面传值第一种场场景:从前往后传值. 秘诀:属性传值.(葵花宝典). 招式:(1).在后一个界面定义属性,属性的类型和传出数据类型一致. (2).在进入下一界面之前, ...
- js+jquery+html实现在三种不通的情况下,点击图片放大的效果
js+jquery+html实现在三种不通的情况下,点击图片放大的效果. 三种情况分别是:图片的父元素宽高固定; 图片的宽高固定; 图片的父元素宽固定,高度不固定 第一种情况:图片的父元素宽高固定 ...
- sort命令总结
功能:排序 语法:sort [-bcdfimMnr][-o<输出文件>][-t<分隔字符>][+<起始栏位>-<结束栏位>][--help][--ver ...
- Friendly number
Friendly number Long numbers can be made to look nicer, so let’s write some code to do just that. Yo ...
- The square chest
The square chest Sophia pressed the button in front of her, slamming her fist against it. The door r ...