Tag Archives: programming

Introduction to arrow functions in javascript

How to use arrow functions in javascript

Last updated:24th December, 2022Arrow functions in JavaScript Arrow function were introduced in ES6 version of JavaScript. These functions allows us to create functions in a better and concise way as compared to regular JavaScript functions. The syntax of arrow functions in JavaScript is as follows: // function expression let arrowFunction = (arg1, arg2, ... argn) => { statement(s) } An …

Read More »

What is Human Computer Interaction? and what are HCI applications

Human-computer-interaction-and-related-research-fields

Last updated:11th May, 2021What is Human Computer Interaction? HCI (Human-computer interaction) is a multidisciplinary field that focuses on how people interact with computers and at what level computers are/aren’t developed to interact with human beings successfully. There are three parts in HCI, the user (human), the computer, and how they work together, meaning interaction, but what is Human Computer Interaction? …

Read More »