Skip to content

Commit

Permalink
new file: .gitignore
Browse files Browse the repository at this point in the history
	new file:   .vscode/settings.json
	new file:   notes.txt
	new file:   package-lock.json
	new file:   package.json
	new file:   readme.md
	new file:   src/1-variables.js
	new file:   src/2-control_flow.js
	new file:   src/dom.html
	new file:   sviluppo_web_in_javascript.md
  • Loading branch information
iacobucci committed Nov 26, 2023
0 parents commit bc62815
Show file tree
Hide file tree
Showing 10 changed files with 3,585 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
sviluppo_web_in_javascript.pdf
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"markdown.marp.enableHtml": true,
"markdown-mermaid.lightModeTheme": "neutral",
"markdown-mermaid.darkModeTheme": "neutral",
"markdown.styles": [
"https://use.fontawesome.com/releases/v5.7.1/css/all.css"
]
}
39 changes: 39 additions & 0 deletions notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
overview di javascript
hello world
variabili
dichiarazione
definizione
dichiarazione e definizione
let, const, var
stringhe
numeri
liste
oggetti
controllo di flusso
if, else, else if
for
while
funzioni
classi
this
asincronia

web
internet e www
browser web
http
cosa fa il browser
dom
css
javascript nel browser
json

applicazione web
creazione di app con framework X
app offline

backend
express
sequelize
sqlite3

Loading

0 comments on commit bc62815

Please sign in to comment.