Path: csiph.com!aioe.org!.POSTED.q9zRsxMKzEsIi5LhtlHG8A.user.gioia.aioe.org!not-for-mail From: son Newsgroups: it.comp.lang.javascript Subject: cosa significa $ in Javascript Date: Fri, 26 Jul 2019 09:36:48 +0200 Organization: Aioe.org NNTP Server Lines: 13 Message-ID: NNTP-Posting-Host: q9zRsxMKzEsIi5LhtlHG8A.user.gioia.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; it; rv:1.8.1.24) Gecko/20100228 Thunderbird/2.0.0.24 Mnenhy/0.7.6.666 Content-Language: it_IT X-Mozilla-News-Host: news://nntp.aioe.org:119 X-Notice: Filtered by postfilter v. 0.9.2 Xref: csiph.com it.comp.lang.javascript:8305 Cosa significa il dollaro in questo codice di esempio? function Person(first_name, last_name) { this.first_name = first_name; this.last_name = last_name; this.displayName = function() { console.log(`Name: ${this.first_name} ${this.last_name}`); }; } Non mi pare che c'entri con jquery.