Underscore: ReferenceError: _ is not defined

Created on 26 Jan 2018  ·  5Comments  ·  Source: jashkenas/underscore

After having some trouble installing underscore (because it's not underscore.js but only underscore), I try to use a underscore function (_.once) but I get this error, I have const Underscore = require("underscore") on the top of my code, but still, and when I try const Underscore = require("underscore.js") it doesn't find the modul, so you could please enlighten me ?

I'm a reall beginner at JavaScript, forgive me if I do something obviously wrong ;p

Most helpful comment

Your code assigns the underscore library to a constant named Underscore.
What I think you want is: const _ = require("underscore"); which will assign the underscore library to a constant named _.

All 5 comments

Your code assigns the underscore library to a constant named Underscore.
What I think you want is: const _ = require("underscore"); which will assign the underscore library to a constant named _.

Omg thanks, since I didn't take any lesson of javascript I wasn't understanding what did this command really means, but now I got it, thanks :D

Your code assigns the underscore library to a constant named Underscore.
What I think you want is: const _ = require("underscore"); which will assign the underscore library to a constant named _.

Was looking this for hours...

Your code assigns the underscore library to a constant named Underscore.
What I think you want is: const _ = require("underscore"); which will assign the underscore library to a constant named _.

Thank you. this works when you are working on react application also.

Your code assigns the underscore library to a constant named Underscore.
What I think you want is: const _ = require("underscore"); which will assign the underscore library to a constant named _.

thnx a lot

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ksullivan picture ksullivan  ·  9Comments

arieljake picture arieljake  ·  4Comments

marcalj picture marcalj  ·  5Comments

markvr picture markvr  ·  3Comments

xiaoliwang picture xiaoliwang  ·  3Comments