Coder Social home page Coder Social logo

learn-typescript's Introduction

Learn TypeScript 5.0+ in Baby Steps

We will learn TypeScript by taking small incremental steps.

Chapters 1-11 of Learning TypeScript: Enhance Your Web Development Skills Using Type-Safe JavaScript

In Class Companion projects and articles for Learning TypeScript

Learning TypeScript Project Code in Class

TypeScript Cookbook: Future Advanced TypeScript Book

Note:

TypeScript and C# both were created by the same person named Anders Hejlsberg

TypeScript Homework Coding Projects:

TypeScript Node.js Projects

Learn From Matt Pocock The TypeScript Wizard

Latest News: Matt Joins Vercel

Total TypeScript Website

TypeScript Crash Course for Beginners with Matt Pocock: Video

Learning TypeScript from Scratch with Matt Pocock: A TypeScript tutorial

Beginner TypeScript Tutorial

Zod Tutorial: Video

Zod Docs

Advanced TypeScript Workshop

Advanced TypeScript with Matt: Video

TypeScript Tips

TypeScript tips and Tricks with Matt: Video

TypeScript Proficiency Quiz Details and Instructions

All Web 3 and Metaverse Students who are already software developers will appear in the following Quiz remotely from home:

Name: TypeScript Proficiency Quiz

Date and Time: Sunday, Oct 23, 9:00 pm

URL: https://portal.piaic.org/

Total MCQs: 63

Total Time: 120 minutes

Please complete your installation, etc. ASAP i.e. before the exam.

It is important to note the following:

  1. You will attempt your exam at your home using the Safe Exam Browser.
  2. Download & Install Safe Exam Browser from Portal.
  3. After Installing the safe browser, download the Config file from the PIAIC Portal.
  4. Right click on the config file and select “open with” then select SEB.
  5. After running the Config file, log in with PIAIC Portal Credentials
  6. Select your Quiz and enter the security key (which will be available on the portal in the exam section) & start the test.
  7. Make sure you have a stable internet connection before attempting the quiz.
  8. Once you have completed the quiz simply logout and close the browser, your quiz will be submitted.
  9. The Quiz can only be attempted on a Laptop or a Desktop computer running Windows or Mac only.
  10. If you miss the quiz date there will be strictly no re-scheduling
  11. Security key for the quiz will be available on Portal in exam section
  12. It is essential to note that QUIZZES WILL NOT BE RESCHEDULED FOR ANY REASON REGARDLESS OF THE CIRCUMSTANCES.

Safe Exam Browser installation and configuration Guide is available here.:

https://youtu.be/MhYvz-50y0Y

Download Safeexam Browser

Note: Those who are beginners in programming should not appear in this quiz now, but will appear in the quiz at the end of the quarter.

TypeScript Cheetsheet

Learn Next.js and Node.js/Express

You can also learn Next.js using TypeScript from here

You can also learn Node.js/Express using TypeScript from here

learn-typescript's People

Contributors

asharibali avatar daytonjallen avatar mohammedtaha avatar smkamranqadri avatar zeeshanhanif avatar ziaukhan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

learn-typescript's Issues

Difference between JSON object and Javascript object

Please update the readme

Javascript Object
const detail = { "name": "Vipin", "age": 21 };

JSON Object
const detail = '{ "name": "Vipin", "age": 21 }';

JSON object is string. After parse they are separated into key/value.

Why am I seeing console.log output for non-exported object properties in my TypeScript code and how can I prevent this?

I have two files, index.ts and app.ts. The index.ts file defines two objects, profile and person. profile is not exported, but it is logged to the console using console.log(profile["age"]) and console.log(profile["education@"]). person is exported as the default export.

In app.ts, I import person using import person from "./index.js"; and log person.name to the console using console.log(person.name);. I compile the TypeScript code using tsc and then run the resulting JavaScript code using node app.js.

index.ts

const profile = {
    name : "Noman..",
    age : 25,
    "education@": "BSSEs",
}

const person = {
    name : "Noman",
    age : 24,
    "education@": "BSSE",
}

console.log(profile["age"]);
console.log(profile["education@"]);

export default person;

app.ts

import person from "./index.js";

console.log(person.name);

The output is

25
BSSEs
Noman

My question is, why am I seeing console.log output for profile properties in my app.js output even though I have not exported the profile object from index.ts? Also, how can I prevent this console output from appearing in my app.js output?

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.