sandman9
10-11-2003, 02:11 PM
Hello
I'm trying to memorize a list of built-in functions and a list of built-in objects. Although I want to understand why eval, escape, etc are built in functions and why colour, button, etc are built in objects. Like is there something that can help me to distinguish in my mind what is a functin and what is a object (built in of coarse). Also things like boolean and string will appear as both a built in function and object. My only reference has been looking at something like this:
function scoreTally (userName, score) {
score.display = userName;
score.display = score;
}
Looking at this I figure what ever goes in the first line above is considered a function and the "score.display" would be the object. I don't know if this is correct. Can anyone help my confused mind?
Sandman9
I'm trying to memorize a list of built-in functions and a list of built-in objects. Although I want to understand why eval, escape, etc are built in functions and why colour, button, etc are built in objects. Like is there something that can help me to distinguish in my mind what is a functin and what is a object (built in of coarse). Also things like boolean and string will appear as both a built in function and object. My only reference has been looking at something like this:
function scoreTally (userName, score) {
score.display = userName;
score.display = score;
}
Looking at this I figure what ever goes in the first line above is considered a function and the "score.display" would be the object. I don't know if this is correct. Can anyone help my confused mind?
Sandman9