Send an unknown method call: Difference between revisions

Content added Content deleted
(→‎E: new example)
Line 6: Line 6:
* [[Respond to an unknown method call]].
* [[Respond to an unknown method call]].
* [[Runtime evaluation]]
* [[Runtime evaluation]]

=={{header|E}}==

Goes well with the object in [[Respond to an unknown method call#E]].

<lang e>for name in ["foo", "bar"] {
E.call(example, name, [])
}</lang>


=={{header|JavaScript}}==
=={{header|JavaScript}}==