I was a part-time frontend developer and DJ for 12 years before retiring from music and becoming a fullstack developer for a couple of years before moving into the culinary arts 🔪
I live in Sheffield, UK and I still build things like Discord bots and PWA’s as a hobby 👋
I was a part-time frontend developer and DJ for 12 years before retiring from music and becoming a fullstack developer for a couple of years before moving into the culinary arts 🔪
I live in Sheffield, UK and I still build things like Discord bots and PWA’s as a hobby 👋
function name (params) {};
Basically a function is a task and params(parameters) are just things you want to send to that task to work with.
const message = “hello”:
function print (message) {
console.log(“my message : ”, message) }
Result: “my message : hello”
function name (params) {};
Basically a function is a task and params(parameters) are just things you want to send to that task to work with.
const message = “hello”:
function print (message) {
console.log(“my message : ”, message) }
Result: “my message : hello”