Grant YoshitsuJavaScript 101: async/awaitThe basics of the async and await keywords to replace .then() chainingDec 26, 2020Dec 26, 2020
Grant YoshitsuJavaScript 101: Returning Booleans, Parameters v. Arguments, and Utilizing Math.random()Miscellaneous tidbits on JS. Returning booleans to avoid if/else statements, differences between parameters and arguments, Math.random()Dec 22, 2020Dec 22, 2020
Grant YoshitsuJavaScript 101: Spread OperatorThe spread operator as it pertains to JavaScript in function calls, arrays [], and object literals {}.Dec 15, 2020Dec 15, 2020
Grant YoshitsuJavaScript 101: mergeSort(array)JavaScript Algorithm basics writing a mergeSort(array) function with a merge(array1, array2) helper function.Dec 8, 2020Dec 8, 2020
Grant YoshitsuJavaScript 101: ReduceImplementing .reduce() to sum an array of numbers, find the maximum value in an array of numbers, and tally the votes from an election.Dec 1, 2020Dec 1, 2020
Grant YoshitsuJavaScript 101: for…of and for…inGoing through the basics of JavaScript for…of and for…in loops.Nov 17, 2020Nov 17, 2020
Grant YoshitsuJavascript 101: let vs. var and Using const with Objects and ArraysDisclaimer: This material was taught in The Modern Javascript Bootcamp Course by Colt Steele and Stephen Grider, which I highly recommend.Nov 16, 2020Nov 16, 2020
Grant YoshitsuJavascript Strings: Miscellaneous TidbitsDisclaimer: This material was taught in The Modern Javascript Bootcamp Course by Colt Steele and Stephen Grider, which I highly recommend.Nov 10, 2020Nov 10, 2020
Grant YoshitsuRecursion Basics: Base Case and Recursive CallDisclaimer: This material was taught in the JavaScript Algorithms and Data Structures Masterclass on Udemy by Colt Steele, which I highly…Nov 3, 2020Nov 3, 2020
Grant YoshitsuAvoid O(N²): Frequency CounterDisclaimer: This material was taught in the JavaScript Algorithms and Data Structures Masterclass on Udemy by Colt Steele, which I highly…Oct 26, 2020Oct 26, 2020