Coder Social home page Coder Social logo

archi-typescript's Introduction

TypeScript Topics Help to Work with Angular

tsc 5-property.ts --target es5 && node 5-property.js

1- Variable Declaration

2- Types

3- Type Assertions (Explictlty tels to the TS about the type)

let message; // any
message = 'nuwan';

let endsWithC = (<string>message).endsWith('c');  // common interpretation
let alternativeWay = (message as string).endsWith('c')

4- Arrow Functions

5- Interfaces (less cohesion)

Interfaces are purely for decalaration NOT for implementation


function sum(point:{x:number,y:number}) => x + y ; // in-line annotation

Inline annotation is bit unclear so, we can use interface instead

interface IPoint {
    x: number,
    y: number
}

function sum(point:IPoint) => ...


6- Classes (Cohesion concept, highly related things have to be in as a one unit)

7- Access modifiers (private, protected, public)

8- Access Modifiers in Construtor

9- Property (Getter and Setter)

10-

archi-typescript's People

Contributors

nchathu2014 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.