Skip to content

Instantly share code, notes, and snippets.

View connectplatform's full-sized avatar

The Connect Platform connectplatform

View GitHub Profile
@connectplatform
connectplatform / keybase.md
Created May 17, 2019 02:46
Keybase github proof

Keybase proof

I hereby claim:

  • I am automart on github.
  • I am sorokin (https://keybase.io/sorokin) on keybase.
  • I have a public key ASCxLKuDWgD_i5yvurNovQdTzj_sVkFB3dG1A1HeTGBH3wo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am connectplatform on github.
  • I am sorokin (https://keybase.io/sorokin) on keybase.
  • I have a public key ASDv-iP7ruJZhWc_80iJPvLy7UPaQArRrbNOFD7YxuaSfgo

To claim this, I am signing this object:

@connectplatform
connectplatform / javascript-fundamentals-part1.md
Last active April 21, 2024 08:36
javascript fundamentals

JavaScript Fundamentals

Data Structures: Your Data Organizers

Arrays: Think of an array like a special box with compartments. Each compartment holds one item, like a number, word, or even another box! You can find things by their number ("Give me item number 3!").

  • Example: Your grocery list is like an array: ["milk", "eggs", "bread"]

Objects: Think of an object like a backpack with different pockets. Each pocket has a name (like "color", "size") and holds something (like "red", "large"). You grab things by their pocket's name ("Give me what's in the 'color' pocket!").

  • Example: A description of your dog could be an object: { name: "Buddy", breed: "Golden Retriever", age: 3 }