Skip to content

Instantly share code, notes, and snippets.

View kv-darwin's full-sized avatar

Darwin Balaji K kv-darwin

View GitHub Profile
@kv-darwin
kv-darwin / Salesforce JS 1 certification session 1
Last active September 5, 2025 06:47 — 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