SYMBOL INDEX (109 symbols across 63 files) FILE: advanced/1. call-apply-bind-methods/Examples/example1.js function printName (line 11) | function printName(favoriteFood) { FILE: advanced/1. call-apply-bind-methods/Examples/example2.js function Food (line 9) | function Food(name, price) { function Burger (line 14) | function Burger(name, price) { function Brownie (line 19) | function Brownie(name, price) { function Pizza (line 46) | function Pizza(name, price) { FILE: advanced/1. call-apply-bind-methods/Examples/example5.js function MotorBike (line 18) | function MotorBike(wheelCount, engineCount){ function GixxerSF (line 23) | function GixxerSF(wheelCount, engineCount, engineCC, brand){ function bicycle (line 42) | function bicycle(wheelCount, engineCount){ function bicycleModelX (line 47) | function bicycleModelX(wheelCount, engineCount, brand){ FILE: advanced/1. call-apply-bind-methods/Examples/example6.js function Car (line 18) | function Car(wheelCount, engineCount){ function LancerX (line 23) | function LancerX(wheelCount, engineCount, engineCC, brand){ function NoteBook (line 42) | function NoteBook(ramCapacity, processorDetail){ function NoteBookModelX (line 47) | function NoteBookModelX(ramCapacity, processorDetail, brand){ FILE: advanced/2. factory-pattern/Examples/example1.js function studentFactory (line 8) | function studentFactory(name, dept, roll) { FILE: advanced/2. factory-pattern/Examples/example2.js function employeeFactory (line 12) | function employeeFactory(employeeType, employeeName) { function fulltimeEmployee (line 29) | function fulltimeEmployee(employeeName) { function parttimeEmployee (line 35) | function parttimeEmployee(employeeName) { function temporaryEmployee (line 41) | function temporaryEmployee(employeeName) { FILE: advanced/2. factory-pattern/Examples/example3.js function person (line 6) | function person (name) { FILE: advanced/2. factory-pattern/Examples/example4.js function makePersonalHomePage (line 4) | function makePersonalHomePage(metaTitle) { FILE: advanced/2. factory-pattern/Examples/example5.js function buildCustomPC (line 4) | function buildCustomPC(cpu, ram, motherBoard, others) { FILE: advanced/3. constructor-pattern/Examples/example1.js function CreateLaptop (line 14) | function CreateLaptop(brand, model, ram, storage) { FILE: advanced/3. constructor-pattern/Examples/example2.js function Car (line 10) | function Car(brand, model, price) { FILE: advanced/3. constructor-pattern/Examples/example3.js function Person (line 7) | function Person (firstName, lastName) { FILE: advanced/3. constructor-pattern/Examples/example4.js function Rectangle (line 8) | function Rectangle(length, width){ FILE: advanced/3. constructor-pattern/Examples/example5.js function BuildCustomPC (line 6) | function BuildCustomPC(cpu, ram, motherBoard, others) { FILE: advanced/3. constructor-pattern/Examples/example6.js function CreateUser (line 4) | function CreateUser(username, fName, lName, email) { FILE: advanced/4. prototype/Examples/example1.js function Name (line 9) | function Name(firstName, lastName) { FILE: advanced/4. prototype/Examples/example2.js function Person (line 12) | function Person(name, age) { FILE: advanced/4. prototype/Examples/example3.js function Team (line 6) | function Team(name) { FILE: advanced/4. prototype/Examples/example4.js function Person (line 5) | function Person(name){ FILE: advanced/4. prototype/Examples/example5.js function CustomPC (line 4) | function CustomPC(cpu, ram, board) { FILE: advanced/4. prototype/Examples/example6.js function CustomBike (line 4) | function CustomBike(cc, bikeType, headlightType) { FILE: advanced/5. prototypical-inheritance/Examples/example4.js method sleep (line 7) | sleep(){ FILE: advanced/6. event-loop/Examples/example3.js function myFunc (line 8) | function myFunc (){ function runforNSceconds (line 19) | function runforNSceconds(sec){ FILE: advanced/6. event-loop/Examples/example4.js function main (line 6) | function main(url){ FILE: advanced/6. event-loop/Examples/example5.js function main (line 5) | function main(number) { FILE: advanced/7. garbage-collector/Examples/example1.js function circularObj (line 13) | function circularObj() { FILE: advanced/7. garbage-collector/Examples/example3.js function addName (line 10) | function addName() { FILE: advanced/7. garbage-collector/Examples/example4.js function marry (line 7) | function marry(man, woman) { FILE: advanced/7. garbage-collector/Examples/example5.js function createUser (line 11) | function createUser() { FILE: advanced/7. garbage-collector/Examples/example6.js function addToList (line 3) | function addToList() { FILE: basic/1. execution-context/Examples/example1.js function timesTen (line 24) | function timesTen(a){ FILE: basic/1. execution-context/Examples/example2.js function fn (line 13) | function fn(){ FILE: basic/1. execution-context/Examples/example3.js function add (line 20) | function add(a, b) { function average (line 24) | function average(a, b) { FILE: basic/1. execution-context/Examples/example4.js function fn1 (line 14) | function fn1(){ function fn2 (line 20) | function fn2(){ function fn3 (line 36) | function fn3(){ FILE: basic/1. execution-context/Examples/example5.js function a (line 28) | function a() { FILE: basic/1. execution-context/Examples/example6.js function a (line 18) | function a() { FILE: basic/1. execution-context/Examples/stackOverflow.js function foo (line 9) | function foo() { FILE: basic/12. use-strict/Examples/example1.js function myFunction (line 15) | function myFunction(){ FILE: basic/13. iife-in-javascript/Examples/example1.js function sayName (line 11) | function sayName() FILE: basic/13. iife-in-javascript/Examples/example2.js function sayName (line 6) | function sayName(){ function sayName (line 21) | function sayName(){ FILE: basic/2. scope/Examples/example1.js function transform (line 13) | function transform() { FILE: basic/3. hoisting/Examples/example2.js function hoistedSuccess (line 4) | function hoistedSuccess() { FILE: basic/3. hoisting/Examples/example3.js function hoistingFunc (line 3) | function hoistingFunc() { FILE: basic/3. hoisting/Examples/example4.js function codeHoist (line 1) | function codeHoist(){ FILE: basic/3. hoisting/Examples/example5.js function codeHoist (line 3) | function codeHoist(){ FILE: basic/4. closure/Examples/Closure_In_InnerFunction.js function add (line 2) | function add() { FILE: basic/4. closure/Examples/closure.js function displayLangName (line 4) | function displayLangName() { FILE: basic/4. closure/Examples/closure_scope_chain.js function sum (line 17) | function sum(a){ FILE: basic/4. closure/Examples/emulating_private_methods_with_closures.js function changeByValue (line 10) | function changeByValue(val) { FILE: basic/5. call-by-value-and-call-by-reference/Examples/example1.js function multiplyByTen (line 3) | function multiplyByTen(value) { function passByReference (line 17) | function passByReference(person) { FILE: basic/5. call-by-value-and-call-by-reference/Examples/example2.js function cube (line 3) | function cube(a) { function switchOn (line 18) | function switchOn(device) { FILE: basic/5. call-by-value-and-call-by-reference/Examples/example4.js function printGreeting (line 3) | function printGreeting(greetName) { function modifyObj (line 13) | function modifyObj(person) { FILE: basic/6. callback-and-higher-order-functions/Examples/example1.js function areaCalculate (line 5) | function areaCalculate(arrayWidth, callback) { function circleArea (line 10) | function circleArea(radius) { function squareArea (line 14) | function squareArea(side) { FILE: basic/6. callback-and-higher-order-functions/Examples/example2.js function modifyArray (line 12) | function modifyArray(arr, callback) { function addElemToArray (line 17) | function addElemToArray(item, arr) { function keyOccurence (line 22) | function keyOccurence(key, arr) { function bindWrapper (line 41) | function bindWrapper(func, ...restArgs) { FILE: basic/6. callback-and-higher-order-functions/Examples/example3.js function sayHi (line 8) | function sayHi(name) { function greetings (line 13) | function greetings(process, name) { function company (line 28) | function company() { FILE: basic/7. this-keyword/Examples/this_in_constructor_invocation.js function Bike (line 3) | function Bike(brand) { function Bike (line 33) | function Bike(brand) { FILE: basic/7. this-keyword/Examples/this_in_function_context_with_use_strict.js function show (line 3) | function show() { FILE: basic/7. this-keyword/Examples/this_in_function_context_without_use_strict.js function show (line 3) | function show() { FILE: projects/big-bang/index.js class Player (line 20) | class Player { method constructor (line 21) | constructor(x, y, radius, color) { method draw (line 27) | draw() { class Projectile (line 35) | class Projectile { method constructor (line 36) | constructor(x, y, radius, color, velocity) { method draw (line 43) | draw() { method update (line 49) | update() { class Enemy (line 56) | class Enemy { method constructor (line 57) | constructor(x, y, radius, color, velocity) { method draw (line 64) | draw() { method update (line 70) | update() { function drawPlayer (line 79) | function drawPlayer() { function spawnEnemy (line 84) | function spawnEnemy() { function animate (line 109) | function animate() { function startGame (line 184) | function startGame() { FILE: projects/blurry-loading/script.js function blurring (line 8) | function blurring() { FILE: projects/expanding-cards/script.js function removeActiveClasses (line 10) | function removeActiveClasses() { FILE: projects/modal/app.js function Modal (line 2) | function Modal() {} FILE: projects/snake-eye/index.js class Eye (line 26) | class Eye { method constructor (line 27) | constructor(eye) { method draw (line 32) | draw() { function init (line 87) | function init() { function animate (line 112) | function animate() {