1. /**
  2. Let inheritance help with memory efficiency
  3. */
  4. function SignalFire(ID, startingLogs){
  5. this.fireID = ID;
  6. this.logsLeft = startingLogs;
  7. }
  8.  
  9. SignalFire.prototype = {
  10. addLogs: function(numLogs){
  11. this.logsLeft += numLogs;
  12. }
  13.  
  14. lightFire: function(){
  15. alert("Whooosh!");
  16. }
  17.  
  18. smokeSignal: function(message){
  19. if(this.logsLeft < this.message.length / 10){
  20. alert("Not enough");
  21. }else{
  22. this.lightFire();
  23. var x = this.message.length;
  24. for(var i = 0; i < x; i++){
  25. alert("((("+this.message[i]+")))");
  26. if(i % 10 == 0 && i != 0){
  27. this.logsLeft--;
  28. }
  29. }
  30. }
  31. }
  32. }
  33.  
  34. var fireOne = new SignalFire(1, 20);
  35. var fireTwo = new SignalFire(2, 18);
  36. var fireThree = new SignalFire(3, 14);
  37.  
  38. fireOne.addLogs(8);
  39. fireTwo.addLogs(10);
  40. fireThree.addLogs(14);
  41. fireThree.smokeSignal("Goblins!");
  42. //The addLogs method is found in one useful place, instead of being
  43. //replicated across all signalFires.
  44.  
  45. /**
  46. Adding individual dom elements ain't always speedy
  47. */
  48. //
  49. //**BAD**
  50. //
  51. var list = document.getElementById("kotwList");
  52. var kotw = ["Jenna Rangespike",
  53. "Neric Farthing",
  54. "Darkin Stonefield"];
  55. for(var i = 0, x = kotw.length; i < x; i++){
  56. var element = document.creatElement('li');
  57. element.appendChild(document.createTextNode(kotw[i]));
  58. list.appendChild(element);
  59. }
  60. //appendChild(); function each time this list is appened, we access the DOM
  61. //and cause an entire document reflow. Not as speedy as we'd like, especially
  62. //if we list was huge...
  63.  
  64. /*
  65. Improve: Use a document fragment to insert additions all at once
  66. */
  67. var list = document.getElementById("kotwList");
  68. var kotw = ["Jenna Rangespike",
  69. "Neric Farthing",
  70. "Darkin Stonefield"];
  71. var fragment = document.createDocumentFragment();
  72. for(var i = 0, x = kotw.length; i < x; i++){
  73. var element = document.creatElement('li');
  74. element.appendChild(document.createTextNode(kotw[i]));
  75. fragment.appendChild(element);
  76. }
  77. list.appendChild(fragment);
  78.  
  79. /*
  80. Improve: declare variables as few times as possible
  81. */
  82. //
  83. //**GOOD**
  84. //
  85. var list = document.getElementById("kotwList"),
  86. kotw = ["Jenna Rangespike",
  87. "Neric Farthing",
  88. "Darkin Stonefield"],
  89. fragment = document.createDocumentFragment(),
  90. element;
  91.  
  92. for(var i = 0, x = kotw.length; i < x; i++){
  93. element = document.creatElement('li');
  94. element.appendChild(document.createTextNode(kotw[i]));
  95. fragment.appendChild(element);
  96. }
  97. list.appendChild(fragment);
  98.  
  99. /**
  100. Efficient choices for string concatenation
  101. */
  102. //
  103. //**OK**
  104. //
  105. var knight = "Jenna Rangespike",
  106. action = " strikes the dragon with a ",
  107. weapon = "Halberd",
  108. turn = "";
  109. turn += knight;
  110. turn += action;
  111. turn += weapon;
  112. //It is ok because the code is short and clear
  113.  
  114. //
  115. //**NOT GOOD ENOGUTH
  116. //
  117. var newPageBuild = ["<!DOCTYPE html>", "<html>", "<body>", "<h1>",
  118. *** a hundred or more other html elements***,
  119. "</script>", "</body>", "</html>"],
  120. page = "";
  121. for(var i = 0, x = newPageBuild.length; i < x; i++){
  122. page += newPageBuild[i];
  123. }
  124. //
  125. //**GOOD**
  126. //
  127. page = newPageBuild.join("\n");
  128. //Using join is much faster than using '+=' and looks simple and clear!!

[Javascript]3. Improve you speed! Performance Tips的更多相关文章

  1. [Javascript]1. Improve you speed! Loop optimaztion

    /** Improve you loop code */ var treasureChest = { goldCoins: 10000, magicalItem : "Crown of Sp ...

  2. [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 ...

  3. Android 性能优化(19)*代码优化11条技巧:Performance Tips

    Performance Tips 1.In this document Avoid Creating Unnecessary Objects 避免多余的对象 Prefer Static Over Vi ...

  4. 转载: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 ...

  5. SQL Server performance tips

    Refer to: http://harriyott.com/2006/01/sql-server-performance-tips A colleague of mine has been look ...

  6. How To Improve Deep Learning Performance

    如何提高深度学习性能 20 Tips, Tricks and Techniques That You Can Use ToFight Overfitting and Get Better Genera ...

  7. 翻译--Blazing fast node.js: 10 performance tips from LinkedIn Mobile

    1.避免使用同步代码: // Good: write files asynchronously fs.writeFile('message.txt', 'Hello Node', function ( ...

  8. Performance tips

    HTML5 Techniques for Optimizing Mobile Performance Scrolling Performance layout-performance

  9. Json.NET Performance Tips

    原文: http://www.newtonsoft.com/json/help/html/Performance.htm To keep an application consistently fas ...

随机推荐

  1. java接口传递数据的实例

    我们要讲E类中的数据变化通知A类,这样通过接口F来实现.具体原理就是E的每次数据改变都让其通知接口:而A类继承接口,所以每次E的调用接口都会触发A类的数据更改事件的触发. 首先创建一个类E: publ ...

  2. 查看哪些ip破解你ssh密码以及次数

    在互联网中,总有一些无聊的人,每天不断的猜解别人服务器的密码!作为linux服务器的管理员,我们应该了解哪些IP经常不断地扫描我们的SSH端口以尝试暴力破解,下面我们用一条命令简单列出哪些IP破解你S ...

  3. Java关键字transient和volatile

    transient标记的变量,在进行序列化的时候,这个字段不进行序列化操作. volatile标记的变量,在进行读写时,必须强制的与内存同步,即在读的时候需要从内存中读取,写的时候也需要回写到内存中. ...

  4. poj2251 三维简单BFS

    D - (热身)简单宽搜回顾 Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Subm ...

  5. mysql 日期时间运算函数(转)

      DAYOFWEEK(date) 返回日期date是星期几(1=星期天,2=星期一,……7=星期六,ODBC标准)mysql> select DAYOFWEEK('1998-02-03'); ...

  6. iOS学习之界面间传值

    /** *  界面间传值步骤 1.界面传值第一种场场景:从前往后传值. 秘诀:属性传值.(葵花宝典). 招式:(1).在后一个界面定义属性,属性的类型和传出数据类型一致. (2).在进入下一界面之前, ...

  7. js+jquery+html实现在三种不通的情况下,点击图片放大的效果

    js+jquery+html实现在三种不通的情况下,点击图片放大的效果. 三种情况分别是:图片的父元素宽高固定;  图片的宽高固定;  图片的父元素宽固定,高度不固定 第一种情况:图片的父元素宽高固定 ...

  8. sort命令总结

    功能:排序 语法:sort [-bcdfimMnr][-o<输出文件>][-t<分隔字符>][+<起始栏位>-<结束栏位>][--help][--ver ...

  9. Friendly number

    Friendly number Long numbers can be made to look nicer, so let’s write some code to do just that. Yo ...

  10. The square chest

    The square chest Sophia pressed the button in front of her, slamming her fist against it. The door r ...