Meghana S Kmeghanask.hashnode.dev·Apr 2, 2024Scope in JavascriptWhat exactly is the scope? Why do we need it? Scope determines the accessibility/usage of variables, functions and objects from different parts of the code. Before diving into its types, there is a term called lexical scope. Let's try to understand t...variable accessibility
Emran Khandaker Evanblog.evanemran.info·Dec 19, 2023A Deep Dive into Kotlin's Scope FunctionsKotlin, the land of concise and expressive code, has a secret weapon under its belt: scope functions. These miniature magicians can transform clunky, chained expressions into elegant chains of clarity. Today, we embark on a journey to unveil their se...133 readsKotlinKotlin
Kumarkmdev.hashnode.dev·Sep 3, 2023Mastering Scope Functions in Kotlin Android 🚀In this blog post, we will dive into the world of scope functions in Kotlin for Android development. Scope functions are powerful tools that allow us to write concise and expressive code by providing a convenient way to work with objects within a spe...41 readsKotlin
dbdawnbeen.kim·Aug 13, 2022번역-Kotlin pearls 1) Scope Functions원문 : [Kotlin pearls 1]Scope Function] https://medium.com/@ramtop/kotlin-scope-functions-c8c41f09615f Scope Functions 우리가 코틀린의 스코프 함수들에 대한 글을 계속 찾아 다닐 필요가 정말로 있을까요? 아마 그렇다고 생각하시는 분들이 많을 것 같습니다. 하지만 스코프 함수들에 대한 설명을 적어놓은 포스트들을 많지만, 정작 저는 상황에 맞는 스코프 함...309 readsReference toKotlin