وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Javascript Practice – Zero to Master – The Coding Interview

سرفصل های دوره

The Javascript Bootcamp Course to master Javascript, data structures and algorithms and pass your coding Interview


1. Introduction & Course Set Up
  • 1.1 learning-javascript-with-dpo.zip
  • 1. Important Quick Note About This Section.html
  • 2. How To Follow Along And Do Exercises In This Course - Code Sand Box
  • 3. What Is CodeSandBox and How To Sign In
  • 4. How To Use CodeSandBox - The Dashboard & Templates
  • 5. CodeSandBox File Architecture
  • 6. What are HTML CSS and JavaScript Basics with CodeSandBox
  • 7. Create a New Vanilla JS Template on CodeSandBox
  • 8. Building Out The Course Template on CodeSandBox
  • 9. Hook Up and Save Your Course Learning Template
  • 10. Final JavaScript Course Template Review

  • 2. Introduction To Programming & JavaScript Basics For Absolute Beginners
  • 1. Important Quick Note About This Section.html
  • 2. Verify Your Course Template Is Complete Before Getting Started
  • 3. Create Your First Course Exercise Lesson
  • 4. Why Comments Are Important in Programming - In line & Multi line Comments
  • 5. How To Write In-Line Comments In JavaScript
  • 6. How To Write Multi-Line Comments In JavaScript
  • 7.1 1. writing-comments-in-javascript.zip
  • 7. Solution for In Line & Multi Line Comments in JavaScript
  • 8. What Are Datatypes in Programming
  • 9. What Are Datatypes & Variables in Programming Part II
  • 10. Write Your Very First Variable in JavaScript
  • 11. Logging Variables with the Console in JavaScript
  • 12. Exercise - Declare A Variable in JavaScript and Log The Result
  • 13.1 2. what-are-variables-in-javascript.zip
  • 13. Solution - Declare A Variable in JavaScript and Log The Result
  • 14. Assigning Variables to Eachother in JavaScript Part I
  • 15.1 3. assigning-variables-to-each-other-in-javascript.zip
  • 15. Assigning Variables to Eachother in JavaScript Part II
  • 16. Exercise - Build A Basic Calculator in JavaScript
  • 17. Solution - Build A Basic Calculator in JavaScript
  • 18. The Difference between var and let in JavaScript - ES6
  • 19. The Difference Between Let and Const in JavaScript
  • 20.1 4the-difference-between-var-let-and-const-in-javascript.zip
  • 20. Exercise Solution - The Difference Between Let and Const in JavaScript
  • 21. Incrementing and Decrementing Operators in JavaScript
  • 22.1 5. increment-and-decrement-in-javascript.zip
  • 22. Exercise Solution - Incrementing and Decrementing Operators in JavaScript
  • 23. The Remainder Operator in Javascript I
  • 24. The Remainder Operator in Javascript II
  • 25.1 6. the-remainder-operator-in-javascript.zip
  • 25. Exericse Solution - The Remainder Operator in Javascript II
  • 26. Compounding & Augmented Operators in JavaScript
  • 27.1 7. compounding-with-augmented-operators.zip
  • 27. Exercise Solution - Compounding & Augmented Operators in JavaScript
  • 28. Escape Sequences in JavaScript
  • 29.1 8. escape-sequences-in-javascript.zip
  • 29.2 8. escape-sequences-in-javascript.zip
  • 29. Exercise Solution - Escape Sequences in JavaScript
  • 30.1 9 what-is-concatenating-in-javascript.zip
  • 30. Exercise Solution - What is Concatenating in JavaScript - Concatenation
  • 31. What are functions in JavaScript Part I
  • 32. What are functions in JavaScript Part II
  • 33.1 10 how-to-write-functions-in-javascript.zip
  • 33. Exercise Solution - What are functions in JavaScript
  • 34.1 11. global-vs-local-scope-and-functions-in-javascript.zip
  • 34. Global vs Local Scope in Functions with JavaScript
  • 35. Equality Operators in JavaScript
  • 36. If Else Statements in JavaScript and (in) Equality Operators
  • 37. Exercise - Time Travel Program - If Else & Equality Operators
  • 38.1 12 if-statements-and-the-equality-operators-in-javascript.zip
  • 38. Solution - Time Travel Program - If Else & Equality Operators
  • 39. Introduction to The For Loop I
  • 40. 33.1 Introduction to The For Loop II
  • 41. Introduction to The For Loop III
  • 42. Introduction to The For Loop IV
  • 43. ForLoop Exercise - Sum of Natural Numbers in Javascript
  • 44.1 13 for-loops-with-javascript.zip
  • 44. ForLoop Solution - Sum of Natural Numbers in Javascript

  • 3. Data Structures - From Zero To Intermediate
  • 1. Important Quick Note About This Section.html
  • 2. Quick CodeSandBox Course Setup Refresher
  • 3.1 1. What Are Arrays Solution.zip
  • 3. What Are Arrays & Dimensions in JavaScript
  • 4. The Length Method in JavaScript
  • 5. What Are Complex & Multi-Dimensional Arrays in JavaScript
  • 6. Exercise Solution - What Are Complex & Multi-Dimensional Arrays in JavaScript
  • 7. Indexing Values in Arrays with JavaScript
  • 8. Accessing Arrays with Bracket Notation Example 1
  • 9. Accessing Arrays with Bracket Notation Example 2
  • 10. Exercise - Acessing City Weather Data Array
  • 11.1 2. accessing-arrays-in-javascript.zip
  • 11. Solution - Acessing City Weather Data Array
  • 12. Modifying Arrays And Unshift in JavaScript
  • 13. Modifying Arrays And Pop in JavaScript
  • 14. Exercise - Array Function for an Anime App
  • 15.1 3. modifying-arrays-what-is-push-and-unshift-in-javascript.zip
  • 15. Solution - Array Function for an Anime App
  • 16. Remove Array Items with Pop and Shift in JavaScript
  • 17. Exercise - Modify Arrays and Remove Items in JavaScript
  • 18.1 4. modifying-arrays-remove-items-with-pop-and-shift-in-javascript.zip
  • 18. Solution - Modify Arrays and Remove Items in JavaScript
  • 19. What Is Splice in JavaScript
  • 20. Example - What Is Splice in JavaScript
  • 21. Example 2 - What Is Splice in JavaScript
  • 22. Exercise - Use The Splice Method To Decode The Mysterry
  • 23.1 5. what-is-splice-in-javascript.zip
  • 23. Solution - Use The Splice Method To Decode The Puzzle
  • 24. Bonus Solution - Use The Splice Method To Decode The Puzzle
  • 25. Adding To Arrays with Splice in JavaScript
  • 26. Exercise - Update New User Database with Splice
  • 27.1 6. adding-to-arrays-with-splice-in-javascript.zip
  • 27. Solution - Update New User Database with Splice
  • 28. How To Clone Arrays with Slice in JavaScript
  • 29. Exercise - Update CryptoCurrency Profile Data
  • 30.1 7. how-to-clone-arrays-make-copies-with-slice.zip
  • 30.2 7. how-to-clone-arrays-make-copies-with-slice.zip
  • 30. Solution Update CryptoCurrency Portfolio Data
  • 31. How To Copy an Array with the Spread Operator in JavaScript
  • 32. Make Multiple Copies of an Array with the Spread Operator
  • 33.1 8. how-to-copy-an-array-with-the-spread-operator-in-javascript.zip
  • 33. Solution - Make Multiple Copes of an Array in JavaScript
  • 34. What is the IndexOf Method in JavaScript
  • 35. Using the IndexOf in the King's Court RPG Example I
  • 36. Using IndexOf in JavaScript King's Court Example II
  • 37. Exercise - Search for game items and clone array
  • 38.1 9 search-for-items-with-indexof-in-javascript.zip
  • 38. Solution - Search for game items and clone array
  • 39. Looping Through Arrays In JavaScript
  • 40. Chunking Arrays with Nested Loops
  • 41.1 10 looping-with-arrays-in-javascript.zip
  • 41. Solution - Chunking Arrays with Nested Loops
  • 42.1 11. complex-arrays-in-javascript-multi-dimensional.zip
  • 42. Complex Arrays in Javascript
  • 43. Exercise Skyrim Dungeon Master Multi Dimensional Arrays
  • 44.1 11. complex-arrays-in-javascript-multi-dimensional.zip
  • 44. Solution - Skyrim Dungeon Master Multi Dimensional Arrays
  • 45. What Are objects in JavaScript - Dot Notation and Modifying Object Key Pair V
  • 46. What Are objects in JavaScript
  • 47. Build An Uber App Customer JavaScript Object Database
  • 48.1 12 what-are-objects-in-javascript-key-pair-values.zip
  • 48.2 12 what-are-objects-in-javascript-key-pair-values.zip
  • 48. Solution - Build An Uber App Customer JavaScript Object Database
  • 49. Modifying Objects and Accesing Objects in JavaScript
  • 50. Exercise - Accessing Weather API Datastructures
  • 51.1 13 modifying-objects-and-nested-objects-in-javascript.zip
  • 51. Solution - Accessing Weather API Datastructures
  • 52. hasOwnProperty the In keyword and Delete in JavaScript
  • 53. Exercise - Fix a Bug For A Medical Company Data
  • 54.1 14 checking-object-properties-in-javascript.zip
  • 54. Solution - Fix a Bug For A Medical Company Data
  • 55. Iterate through Objects with the For...in JavaScript
  • 56. Exercise - Login Iteration Calculator
  • 57.1 15. iterate-through-objects-with-the-forin-statement.zip
  • 57. Solution - Login Iteration Calculator
  • 58. What is Object.keys in JavaScript - Storing keys into arrays with Javascript
  • 59.1 16. what-is-objectkeys-in-javascript-storing-keys-into-arrays.zip
  • 59. Objects in JavaScript Basic Overview Review I
  • 60. Final Exercise - Facebook Unfriend Functionality
  • 61.1 17. objects-in-javascript-basics-overview.zip
  • 61. Final Exercise Solution - Facebook Unfriend Functionality

  • 4. Alogrithms Basics & Fundamentals to Intermediate
  • 1. What To Expect in This Section!
  • 2. How To Reverse A String Exercise
  • 3. How To Reverse A String - Solution I
  • 4.1 1 how-to-reverse-a-string-in-javascript.zip
  • 4. How To Reverse A String - Solution II
  • 5. What Is A Factorial in Javascript (Probability Calculations)
  • 6. Exercise - Write a Factorial Function in Javascript
  • 7.1 2 what-is-a-factorial-javascript-probability-calculations.zip
  • 7. Solution I - Write a Factorial Function in Javascript
  • 8. How To Find The Longest Word In A String
  • 9. Solution I - How To Find The Longest Word In A String
  • 10.1 3 find-the-longest-word-in-a-string-in-javascript.zip
  • 10. Solution II - How To Find The Longest Word In A String with ForEach
  • 11. How To Return the Smallest number in Nested Arrays
  • 12.1 4 return-the-smallest-numbers-in-nested-arrays.zip
  • 12. Solution - How To Return the Smallest number in Nested Arrays
  • 13. How To Repeat A String in JavaScript
  • 14. Solution I - How To Repeat A String in JavaScript
  • 15. Solution II - How To Repeat A String in JavaScript
  • 16.1 5 how-to-repeat-a-string-in-javascript.zip
  • 16. Solution III - How To Repeat A String in JavaScript - Array Fill Method
  • 17. What Is Truncation and truncate in JavaScript
  • 18. Exercise -How to Truncate in JavaScript Overflow Subscriptions
  • 19.1 6 how-to-truncate-a-string-in-javascript.zip
  • 19. Solution -How to Truncate in JavaScript Overflow Subscriptions
  • 20. Hacking A Password with Matching Keywords in JavaScript
  • 21.1 7 hacking-a-password-with-matching-keywords-in-javascript.zip
  • 21. Solution - Hacking A Password with Matching Keywords in JavaScript
  • 22. Formatting and ToUppercase with Javascript
  • 23. Exercise - Automate A Company Website with Correct Formatting in Javascript
  • 24. Solution I - Automate A Company Website with Correct Formatting in Javascript
  • 25.1 8. uppercase-capitalize-letters-in-strings-javascript.zip
  • 25. Solution part II - Automate A Company Website with Correct Formatting
  • 26. What Is The Sort Method in Javascript
  • 27. Example Of How To Sort in Javascript
  • 28. Interview Question - Sort & Order Numbers Into An Array with Javascript
  • 29. Interview Solution - Sort & Order Numbers Into An Array with Javascript
  • 30.1 9. sort-and-order-numbers-with-arrays-in-javascript.zip
  • 30. Interview Solution II - Sort & Order Numbers Into An Array with Javascript
  • 31. What Are Anagrams and Mutations in Javascript
  • 32. Solution I - Anagrams Problem in JavaScript
  • 33. Solution II - iterative optimization Anagrams Problem in JavaScript
  • 34.1 10 anagrams-decoding-mutations-in-javascript.zip
  • 34. Solution III - iterative optimization Anagrams Problem in JavaScript
  • 35.1 11 bonus - anagrams - decoding mutations in javascript .zip
  • 35. How To Debug and Problem Solve Step by Step - iterative optimization Anagrams
  • 36. Exercise - Chunking Arrays into Subgroups and SubArrays
  • 37. Solution I - Chunking Arrays into Subgroups and SubArrays
  • 38.1 12 chunking arrays into groups & subarrays .zip
  • 38. Solution II - Chunking Arrays into Subgroups and SubArrays

  • 5. Algorithms & Datastructures - Intermediate to Advanced
  • 1. Quick Recall - What is the Math method in Javascript
  • 2. Exercise - Build An Array Calculator
  • 3. Solution I - Build An Array Calculator
  • 4.1 1 math-helpers-in-javascript.zip
  • 4. Solution II - Build An Array Calculator
  • 5. What Are Callback Functions in Javascript
  • 6. Exercise - Virus Detection Algorithm - Asymmetric Arrays
  • 7.1 2 virus-detection-algorithm-asymmetric-arrays.zip
  • 7. Solution - Virus Detection Algo with Asymmetric Arrays
  • 8. What Is The Filter Method in Javascript
  • 9. Exercise - Group Objects in JavaScript
  • 10. Solution - Group Objects in JavaScript
  • 11.1 4. group-objects-by-values-in-javascript.zip
  • 11. Solution Part II - Group Objects in JavaScript
  • 12. What is Reg Ex and how to use it in Javascript
  • 13. Exercise - Star Power with Reg Ex in Javascvript
  • 14.1 5 regex-matches-in-javascript.zip
  • 14. Solution - Star Power with Reg Ex in Javascvript
  • 15. Exercise Pairing Elements in Multi Dimensional Arrays
  • 16.1 6. pairing-elements-in-multi-dimensional-arrays-with-javascript.zip
  • 16. Solution Pairing Elements in Multi Dimensional Arrays
  • 17. CharChodeAt and fromCharCode with Javascript
  • 18. Generate Missing Alphabet Letters UTF with Javascript
  • 19.1 7 generate-missing-alphabet-letters-utf-16-in-javascript.zip
  • 19. Solution - How To Generate Missing Letters between characters in Javascript
  • 20. What Is The Reduce Method in Javascript &n Example I
  • 21. What Is The Reduce Method in Javascript &n Example II
  • 22. Exercise - Sort Out Facebook Groups by Location
  • 23.1 8 sorting-objects-and-notation-in-javascript.zip
  • 23. Solution I - Sort Out Facebook Groups by Location
  • 24. Solution II - Sort Out Facebook Groups by Location
  • 25. Understanding The Fibbonacci Series & Recursion in Javascript
  • 26. What is Big O And Time Complexity
  • 27. Exercise - Convert An Exponential Solution to A Linear Solution
  • 28.1 9 the-fibonnaci-series-in-javascript.zip
  • 28. Solution - Convert An Exponential Solution to A Linear Solution
  • 29. Exercise Writing Testing Units for Model Predictions with Javascript
  • 30. Exercise Part II Writing Testing Units for Model Predictions with Javascript
  • 31.1 10 model-prediction-ml-javascript-tests.zip
  • 31. Reverse Exercise Part II Writing Testing Units for Model Predictions
  • 32. What is the Constructor and This keyword in Javascript
  • 33. Interview Question - Uber Eats Payment Database
  • 34.1 11 object constructors in javascript .zip
  • 34. Solution I - Interview Question - Uber Eats Payment Database
  • 35. What is A Palindrome Interview Question in Javascript
  • 36. Interview Question - Check If A String is a Palindrome
  • 37.1 12 what is a palindrome in javascript .zip
  • 37.2 12 what is a palindrome in javascript .zip
  • 37. Solution I - Interview Question - Check If A String is a Palindrome
  • 38. Leet Code Example - Trapping Rain Water
  • 39. Solution - Leet Code Example - Trapping Rain Water
  • 40.1 13 leet code example - trapping rain water (case study) .zip
  • 40. Solution MaxRun Leet Code Interview Question
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    شناسه: 2841
    حجم: 10663 مگابایت
    مدت زمان: 1010 دقیقه
    تاریخ انتشار: 28 دی 1401
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید