Object.eval() : Object « Object Oriented « JavaScript Tutorial

JavaScript Tutorial
1. Language Basics
2. Operators
3. Statement
4. Development
5. Number Data Type
6. String
7. Function
8. Global
9. Math
10. Form
11. Array
12. Date
13. Dialogs
14. Document
15. Event
16. Location
17. Navigator
18. Screen
19. Window
20. History
21. HTML Tags
22. Style
23. DOM Node
24. Drag Drop
25. Object Oriented
26. Regular Expressions
27. XML
28. GUI Components
29. Animation
30. MS JScript
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript Tutorial » Object Oriented » Object 
25. 2. 4. Object.eval()

Syntax

object.eval(string)

The eval() method evaluates a string of JavaScript code in reference to this object.

<html>
    <body>
    <script language="JavaScript">
    <!--
    var x = 9;
    var y = 8;
    document.write("The result of x * y is: " + eval(x * y));
    -->
    </script>
    </body>
    </html>
25. 2. Object
25. 2. 1. The Object Class
25. 2. 2. Object()
25. 2. 3. Object.constructor
25. 2. 4. Object.eval()
25. 2. 5. Object.prototype
25. 2. 6. Object.toSource()
25. 2. 7. Object.toString()
25. 2. 8. Object.unwatch()
25. 2. 9. Object.valueOf()
25. 2. 10. Object.watch()
25. 2. 11. Add method to Object class
ww___w__.___ja___v___a_2s___.__c__om | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.