vote up 2 vote down star

I copied this code from an example. I've read it 100 times.

Array.prototype.map = function(fn) {
    var r = [];
    var l = this.length;
    for(var i = 0; i < l; i++) {
        r.push(fn(this[i]));
    }
    return r;
};

Why does Firefox say:

not well-formed
file:///some/path.html                         Line: 5
    for(var i = 0; i < l; i++) {
    -------------------^

UPDATE

The error is only shown when Firebug is turned on for the page.

flag

2  
Works fine - jsbin.com/ifuhu/edit – Chetan Sastry Nov 4 at 0:03
2  
Your problem got solved, but I would encourage you to check if there is a native map implementation before declaring your own (which will shadow the native one if were available), the native implementations provided by moderns browsers are really much more faster. – CMS Nov 4 at 0:18

4 Answers

vote up 5 vote down check

You are using Javascript code in an HTML page claiming to be fully XHTML-compliant. Therefore, the < character cannot appear in the Javascript, as it would be interpreted as the beginning of an XHTML tag.

There are a number of ways to fix this.

You could change the DOCTYPE and make it not XHTML.
You could enclose the Javascript in a <![CDATA[ section.
You could move the Javascript into a separate .js file.
You could escape every occurrence of < with &lt and every & with &amp;. I do not recommend this option; it'll make your code unreadable and will almost definitely not work in IE.

link|flag
1  
Awesome. Thanks. – Daniel Straight Nov 4 at 0:11
I thought I had tried the DOCTYPE too, but I guess not. – Daniel Straight Nov 4 at 0:14
vote up 0 vote down

If I use the following HTML and your text as "test.js", I too get no errors in Firebug.

<html>
<head>
    <script type="text/javascript" src="test.js"></script>
</head>
<body>
    test
</body>
</html>
link|flag
vote up 0 vote down

Works for me. Please post the full file, and make sure you are using script tags.

I posted a validating pastebin file (Chetan's was technically not valid), and it works fine with Firebug. So I suggest you come back with a full page of validating code that doesn't work.

link|flag
That IS the full file, aside from various combinations of html and script tags. I've tried with just a script tag. I've tried with a full HTML page including just a script tag in the body, with and without a doctype. – Daniel Straight Nov 4 at 0:00
vote up 1 vote down

Likely your error isn't in this code, but something above it trickling errors down. So, instead of finding an error in this code, look above for malformed HTML or javascript that could be causing this error instead.

link|flag
There is no HTML or other Javascript. – Daniel Straight Nov 4 at 0:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.