Skip to content

Instantly share code, notes, and snippets.

View ellijayne's full-sized avatar

EJ ellijayne

  • Catalpa International
  • Sydney
  • 20:42 (UTC +11:00)
View GitHub Profile
@zailleh
zailleh / example.js
Created June 16, 2018 08:38
array.push example.js
//create empty array of bank accounts
let bankAccounts = []
// function to create a new account
const addAccount = function( name, amount ) {
// create new account object
let newAccount = {
accountName: name,
balance: amount