{"id":24768,"date":"2020-10-26T09:49:05","date_gmt":"2020-10-26T16:49:05","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=24768"},"modified":"2020-11-10T08:07:20","modified_gmt":"2020-11-10T16:07:20","slug":"javascript-format-currency-intlnumberformat","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/","title":{"rendered":"JavaScript Format Currency (intl.numberformat)"},"content":{"rendered":"\n<p>In JavaScript, the <strong>Intl.NumberFormat()<\/strong> method is used to specify a currency we want a number to represent. The method is a constructor that can be used to format currency in its style property.&nbsp;<br><\/p>\n\n\n\n<p>This article states how we use the <strong>Intl.NumberFormat()<\/strong> to achieve this, as well as show some example code.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Breaking Down the Constructor and Its Parameters<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>new Intl.NumberFormat([locales[, options]])<\/pre><\/div>\n\n\n\n<p>Because <strong>Intl.NumberFormat()<\/strong> is a constructor, it will be preceded by JavaScript\u2019s \u201cnew\u201d keyword to create an object that can achieve specialized number formatting.<br><\/p>\n\n\n\n<p>The constructor takes two optional parameters, \u201clocales\u201d and \u201coptions\u201d. Locales will hold a string with the internet\u2019s Best Current Practices (BCP) for language tags, or currently, BCP 47. For example, if we wanted American English, we would use the BCP 47 language tag of \u201cen-US\u201d, if we wanted Brazilian Portuguese, we would use \u201cpt-BR\u201d.&nbsp;<br><\/p>\n\n\n\n<p>Options has 17 different properties it can hold, but in this article, we will focus on just three. We also focus on style, which we can utilize currency with, CurrencyDisplay, and CurrencySign.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Example Code<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>const money = 85000.50\n \n\/\/ For Brazilian Reals\nconsole.log(new Intl.NumberFormat('pr-BR', {style: 'currency', currency: 'BRL'}).format(money))\n\/\/ outputs R$85,000.50\n \n\/\/ For USD\nconsole.log(new Intl.NumberFormat('en-US', {style: 'currency', currency: 'USD'}).format(money))\n\/\/ outputs $85,000.50\n \n\/\/ For Japanese Yen\nconsole.log(new Intl.NumberFormat('ja-JP', { style: 'currency', currency: 'JPY' }).format(money));\n\/\/ outputs \u00a585,001<\/pre><\/div>\n\n\n\n<p>Some things to notice from our example code above is that we\u2019ve used the <code>format()<\/code> method to pass in our money variable. We did so after we\u2019ve created the new object, which is being used to format our currency to our preferences, which are being passed in as parameters.<br><\/p>\n\n\n\n<p>Notice how we not only get the real symbol in our output, but we also get the right format for the currencies. With Japanese Yen, the change in this example was rounded up purposefully as it does not observe minor units.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CurrencyDisplay and CurrencySign<\/h2>\n\n\n\n<p>Two other common properties we can hold under the options parameter for currency are CurrencyDisplay and CurrencySign.<br><\/p>\n\n\n\n<p>CurrencyDisplay will display the currency in different formatting using values such as symbol, narrowSymbol, code, and name.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>let money = 85000.50;\n \nconst symbol = new Intl.NumberFormat('en-USD', {\n  style: 'currency',\n  currency: 'USD',\n  currencyDisplay: 'symbol'\n}).format(money);\n \nconst narrowSymbol = new Intl.NumberFormat('en-USD', {\n  style: 'currency',\n  currency: 'USD',\n  currencyDisplay: 'narrowSymbol'\n}).format(money);\n \nconst code = new Intl.NumberFormat('en-USD', {\n  style: 'currency',\n  currency: 'USD',\n  currencyDisplay: 'code'\n}).format(money);\n \nconst name = new Intl.NumberFormat('en-USD', {\n  style: 'currency',\n  currency: 'USD',\n  currencyDisplay: 'name'\n}).format(money);\n \n \nconsole.log(symbol) \n\/\/ $85,000.50\nconsole.log(narrowSymbol)\n\/\/ $85,000.50 rather than US$85,000.50\nconsole.log(code)\n\/\/ USD 85,000.50\nconsole.log(name)\n\/\/ 85,000.50 US dollars<\/pre><\/div>\n\n\n\n<p>CurrencySign will wrap a number in parentheses instead of appending the minus sign. This is used for and with \u201caccounting\u201d, so we must change the option to this as it is automatically defaulted to \u201cstandard\u201d.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>let money = -8500.50;\n \nconst accounting = new Intl.NumberFormat('en-USD', {\n  style: 'currency', \n  currency: 'USD',\n  currencySign: 'accounting' \n}).format(money);\n \nconsole.log(accounting)\n\/\/ ($8,500.50)<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <strong>Intl.NumberFormat()<\/strong> method is a constructor used to, among other things, format currency in its style property. We can use it in conjunction with <code>format()<\/code> to display currency to our liking.<\/p>\n","protected":false},"excerpt":{"rendered":"In JavaScript, the Intl.NumberFormat() method is used to specify a currency we want a number to represent. The method is a constructor that can be used to format currency in its style property.&nbsp; This article states how we use the Intl.NumberFormat() to achieve this, as well as show some example code. Breaking Down the Constructor&hellip;","protected":false},"author":91,"featured_media":24769,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-24768","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>JavaScript Format Currency (intl.numberformat) | Career Karma<\/title>\n<meta name=\"description\" content=\"The Intl.NumberFormat()method is a constructor used to (among other things) format currency in its style property. Check out this article from Career Karma where we state ways in which we can use the Intl.NumberFormat() to achieve this.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Format Currency (intl.numberformat)\" \/>\n<meta property=\"og:description\" content=\"The Intl.NumberFormat()method is a constructor used to (among other things) format currency in its style property. Check out this article from Career Karma where we state ways in which we can use the Intl.NumberFormat() to achieve this.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-26T16:49:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-10T16:07:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/jason-leung-SAYzxuS1O3M-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kelly M.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/misskellymore\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kelly M.\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/\"},\"author\":{\"name\":\"Kelly M.\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"headline\":\"JavaScript Format Currency (intl.numberformat)\",\"datePublished\":\"2020-10-26T16:49:05+00:00\",\"dateModified\":\"2020-11-10T16:07:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/\"},\"wordCount\":373,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/jason-leung-SAYzxuS1O3M-unsplash.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/\",\"name\":\"JavaScript Format Currency (intl.numberformat) | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/jason-leung-SAYzxuS1O3M-unsplash.jpg\",\"datePublished\":\"2020-10-26T16:49:05+00:00\",\"dateModified\":\"2020-11-10T16:07:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"description\":\"The Intl.NumberFormat()method is a constructor used to (among other things) format currency in its style property. Check out this article from Career Karma where we state ways in which we can use the Intl.NumberFormat() to achieve this.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/jason-leung-SAYzxuS1O3M-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/jason-leung-SAYzxuS1O3M-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"pile-of-money-in-many-different-currencies\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-format-currency-intlnumberformat\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JavaScript Format Currency (intl.numberformat)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\",\"name\":\"Kelly M.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"caption\":\"Kelly M.\"},\"description\":\"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/kemore\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/misskellymore\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/kelly-m\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"JavaScript Format Currency (intl.numberformat) | Career Karma","description":"The Intl.NumberFormat()method is a constructor used to (among other things) format currency in its style property. Check out this article from Career Karma where we state ways in which we can use the Intl.NumberFormat() to achieve this.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Format Currency (intl.numberformat)","og_description":"The Intl.NumberFormat()method is a constructor used to (among other things) format currency in its style property. Check out this article from Career Karma where we state ways in which we can use the Intl.NumberFormat() to achieve this.","og_url":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-26T16:49:05+00:00","article_modified_time":"2020-11-10T16:07:20+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/jason-leung-SAYzxuS1O3M-unsplash.jpg","type":"image\/jpeg"}],"author":"Kelly M.","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/misskellymore","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kelly M.","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/"},"author":{"name":"Kelly M.","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"headline":"JavaScript Format Currency (intl.numberformat)","datePublished":"2020-10-26T16:49:05+00:00","dateModified":"2020-11-10T16:07:20+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/"},"wordCount":373,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/jason-leung-SAYzxuS1O3M-unsplash.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/","url":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/","name":"JavaScript Format Currency (intl.numberformat) | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/jason-leung-SAYzxuS1O3M-unsplash.jpg","datePublished":"2020-10-26T16:49:05+00:00","dateModified":"2020-11-10T16:07:20+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"description":"The Intl.NumberFormat()method is a constructor used to (among other things) format currency in its style property. Check out this article from Career Karma where we state ways in which we can use the Intl.NumberFormat() to achieve this.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/jason-leung-SAYzxuS1O3M-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/jason-leung-SAYzxuS1O3M-unsplash.jpg","width":1020,"height":680,"caption":"pile-of-money-in-many-different-currencies"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/javascript-format-currency-intlnumberformat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"JavaScript Format Currency (intl.numberformat)"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb","name":"Kelly M.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","caption":"Kelly M."},"description":"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.","sameAs":["https:\/\/www.linkedin.com\/in\/kemore\/","https:\/\/x.com\/https:\/\/twitter.com\/misskellymore"],"url":"https:\/\/careerkarma.com\/blog\/author\/kelly-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24768","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/91"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=24768"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24768\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/24769"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=24768"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=24768"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=24768"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}