Skip to content

Instantly share code, notes, and snippets.

{
"success": true,
"credits_left": 19993,
"rate_limit_left": 19999,
"person": {
"publicIdentifier": "eden-marco",
"linkedInIdentifier": "ACoAABx4394BeQhL15XiUqnQf7d9fobHXw13SMo",
"memberIdentifier": "477683678",
"linkedInUrl": "https://www.linkedin.com/in/eden-marco",
"firstName": "Eden",
/*
* VARIABLES:
*
* 0. To hold things in memory during the life-cycle of a program, we can use variables. Variables
* are named identifiers that can point to values of a particular type, like a Number, String,
* Boolean, Array, Object or another data-type. Variables are called so because once created, we
* can CHANGE the value (and type of value) to which they point.
*
* 1. To create a variable we use the keyword, var, followed by a name (id or alias) for our
* variable.