topical media & game development

talk show tell print

mobile-js-parts-appc.txt / txt



  appendix: JSLint
  ==================
  /*global getElementByAttribute, breakCycles, hanoi */
      
      
  ====================================
  /*members doTell, iDoDeclare, mercySakes,
      myGoodness, ohGoOn, wellShutMyMouth */
      
      
  ====================================
  /*jslint nomen: true, evil: false */
      
      
  ====================================
  , ; : { } ( [ = < > ? ! + - * / % ˜ ^ | &
  == != <= >= += -= *= /= %= ^= |= &= << >> || &&
  === !== <<= >>= >>> >>>=
      
      
  ====================================
  ) ] . ++ --
      
      
  ====================================
  if (condition)
      statement;
      
      
  ====================================
  if (condition) {
      statements;
  }
      
      
  ====================================
  for (name in object) {
      if (object.hasOwnProperty(name)) {
          ....
      }
  }
      
      
  ====================================
  if (a = b) {
      ...
  }
      
      
  ====================================
  if (a == b) {
      ...
  }
      
      
  ====================================
  0 '' undefined null false true
      
      
  ====================================
  (foo != 0)
      
      
  ====================================
  (foo)
      
      
  ====================================
  (foo == 0)
      
      
  ====================================
  (!foo)
      
      
  ==================


(C) Æliens 04/09/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.