codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

I Chose TypeScript For the Nostalgia

Gerald Nash
codeburst
Published in
4 min readJun 21, 2017

--

var express = require('express')
var app = express()

app.get('/', function (req, res) {
res.send('Hello World!')
})

app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})
var burger: string = 'hamburger',     // String 
calories: number = 300, // Numeric
tasty: boolean = true; // Boolean

// Alternatively, you can omit the type declaration:
// var burger = 'hamburger';

// The function expects a string and an integer.
// It doesn't return anything so the type of the function itself is void.

function speak(food: string, energy: number): void {
console.log("Our " + food + " has " + energy + " calories.");
}

speak(burger, calories);

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Responses (2)

Write a response