About 102,000 results
Open links in new tab
  1. eval () - JavaScript | MDN

    Jan 21, 2026 · The eval () function evaluates JavaScript code represented as a string and returns its completion value. The source is parsed as a script.

  2. eval in Python - GeeksforGeeks

    Jul 23, 2025 · Python eval function comes with the facility of explicitly passing a list of functions or variables that it can access. We need to pass it as an argument in the form of a dictionary.

  3. JavaScript eval () Method - W3Schools

    Description The eval() method evaluates or executes an argument. If the argument is an expression, eval() evaluates the expression. If the argument is one or more JavaScript statements, eval() …

  4. Eval: run a code string - The Modern JavaScript Tutorial

    Sep 25, 2019 · Right now, there’s almost no reason to use eval. If someone is using it, there’s a good chance they can replace it with a modern language construct or a JavaScript Module.

  5. What does Python's eval() do? - Stack Overflow

    Using eval() is a security hole. If you need to convert strings to other formats, try to use things that do that, like int(). You mean using eval with input() is a security hole. Don't put input() inside an eval …

  6. eval () | Python’s Built-in Functions – Real Python

    The built-in eval() function allows you to dynamically evaluate Python expressions from a string or compiled code object and returns the result of the evaluated expression:

  7. What Is Eval? - Computer Hope

    Sep 7, 2025 · Short for evaluate, eval is a function in different interpreted and compiled programming languages. This function can have many abilities depending on your programming language.

  8. How to Use eval in JavaScript: Syntax, Examples, and Security Risks

    Aug 24, 2025 · Eval means evaluate, as the name suggests, the eval () function in JavaScript is used to evaluate or parse a sequence of statements or a JavaScript expression inside a string and return the …

  9. eval - Wikipedia

    In some programming languages, eval, short for evaluate, is a function which evaluates a string as though it were an expression in the language, and returns a result; in others, it executes multiple …

  10. eval in JavaScript - TutorialsTeacher.com

    Learn what is eval function in JavaScript. eval () is a global function in JavaScript that evaluates specified string as JavaScript code and executes it.