SMSunkara Mallikharjunainfullstackdevroad.hashnode.dev·Aug 26, 2024 · 3 min readJavaScript BasicsJS vars,loops, functions Async vs sync Callbacks Callback explaination visualization "http://latentflip.com/loupe/" // callbacks function square(n){ return n*n; } function cube(n){ return n*n*n; } function sumOfSomething(a,b,fn){ ...00
SMSunkara Mallikharjunaintomandjerry-blogs.hashnode.dev·Sep 21, 2023 · 6 min readData Structures using Pythonpython has 5 built-in data structures list, tuple, dictionary, set. These can be categorized into two types Ordered built-in data structures: In this type of data structure, we can expect the data to be stored based on an index starting from 0 inde...00