# Links & Infos

# div. Tipps und Infos

  • Multiplizieren ist für Rechner einfache als dividieren: *0.5 ist besser als /2

  • verschachtelte If-Statements möglichst vermeiden

  • Convention für Boolean: isCondition

  • Convention for Names (From the Google Closure Library Style Guide):

    functionNamesLikeThis;
    variableNamesLikeThis;
    ConstructorNamesLikeThis;
    EnumNamesLikeThis;
    methodNamesLikeThis;
    SYMBOLIC_CONSTANTS_LIKE_THIS;
    

# Places to practice coding