About 50 results
Open links in new tab
  1. javascript - What is lexical scope? - Stack Overflow

    Jun 26, 2009 · This is called lexical scoping where " functions are executed using the scope chain that was in effect when they were defined " - according to JavaScript Definition Guide. Lexical scope is a …

  2. Lexical Custom Node not working with Enter Key - Stack Overflow

    Dec 27, 2024 · Need to create a custom node to create heading1, formatted and normal fonts on choosing each button and created a custom node for it. NewNode.js import { ElementNode } from …

  3. Static (Lexical) Scoping vs Dynamic Scoping (Pseudocode)

    Mar 14, 2014 · Term: Lexical scoping denotes that an entity such as a function resolves its free variables from where the entity is defined. Term: Dynamic scoping denotes that an entity such as a function …

  4. javascript - What is lexical 'this'? - Stack Overflow

    Lexical this simply means that this is looked up in lexical scope. I guess that was actually always the case. Maybe it is easier to understand if we say that an arrow function doesn't have an own this value.

  5. string - What is lexicographical order? - Stack Overflow

    Aug 30, 2017 · What is the exact meaning of lexicographical order? How it is different from alphabetical order?

  6. Supporting "@mention" functionality with lexical js

    Nov 6, 2022 · The Lexical Playground includes mentioning functionality with auto-complete popup. The code for the functionality is available here.

  7. reactjs - Lexical Editor - Paste command - Stack Overflow

    Jun 2, 2025 · I am trying to implement a custom paste button in lexical editor to paste all user copied content. But some commands like <mark/> , <pre/> etc are getting lost and only its content …

  8. function - How do JavaScript closures work? - Stack Overflow

    Sep 21, 2008 · A closure is a pairing of: A function and A reference to that function's outer scope (lexical environment) A lexical environment is part of every execution context (stack frame) and is a map …

  9. reactjs - What's the lexical-way to identify incoming HTML and parse ...

    May 2, 2024 · What's the lexical-way to identify incoming HTML and parse out my custom node? Asked 1 year, 8 months ago Modified 1 year, 1 month ago Viewed 519 times

  10. Dynamic and Lexical variables in Common Lisp - Stack Overflow

    Jan 21, 2009 · The difference between lexical and dynamic scope comes down to how an implementation deals with free variables. A symbol is bound in an expression if it has been …