Skip to content

Instantly share code, notes, and snippets.

@ofarras
ofarras / Salesforce JS 1 certification session 1
Created May 6, 2021 14:30 — forked from karkranikhil/Salesforce JS 1 certification session 1
Salesforce JavaScript Developer 1 certification series
// The console.log() is a function that writes a message to log on the debugging console
// Names can contain letters, digits, underscores, and dollar signs.
// No limit o the length of the variable name
// Names can begin with letter, $ and _
// Reserved words(like switch, if else) cannot be used as names
// console.log(null+'10');
// var name = "Nikhil"
// var age = 23
@ofarras
ofarras / notify.yml
Created May 5, 2020 20:41 — forked from trung/notify.yml
Notify slack about Github Actions workflow and its jobs status. `notify` job must be the last job in the workflow and it must depend on all other jobs
notify:
if: always()
name: Notify
needs:
- job1
- job2
- job11
- job3
- job4
runs-on: ubuntu-latest