Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geraldohomero/javascript-typescript-notes
Exercícios e anotações sobre JavaScript, TypeScript, Vite.js, React.js, Next.js, Redux e outros
https://github.com/geraldohomero/javascript-typescript-notes
api git html5 javascript js mariadb mysql nextjs nodejs oop reactjs redux sql ts typescript vuejs
Last synced: about 8 hours ago
JSON representation
Exercícios e anotações sobre JavaScript, TypeScript, Vite.js, React.js, Next.js, Redux e outros
- Host: GitHub
- URL: https://github.com/geraldohomero/javascript-typescript-notes
- Owner: geraldohomero
- Created: 2023-07-12T20:37:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-18T23:03:34.000Z (9 months ago)
- Last Synced: 2024-04-19T22:26:48.990Z (9 months ago)
- Topics: api, git, html5, javascript, js, mariadb, mysql, nextjs, nodejs, oop, reactjs, redux, sql, ts, typescript, vuejs
- Language: JavaScript
- Homepage:
- Size: 425 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript & TypeScript Notes
Exercícios e anotações sobre JavaScript, TypeScript, Vue.js, React.js, Next.js, SQL, dentre outros.
```typescript
class Person {
name: string;
age: number;
constructor(name: string, age: number) {
this.name = name;
this.age = age;
}
greet(): void {
console.log(`Hello, my name is ${this.name} and I am ${this.age} years old.`);
}
}
let gersilayne = new Person("Gersilayne", 25);
gersilayne.greet();
let wellersiano = new Person("Wellersiano", 25);
wellersiano.greet();
```