{"id":27006732,"url":"https://github.com/rwaldron/exponentiation-operator","last_synced_at":"2025-04-04T08:01:37.471Z","repository":{"id":19247319,"uuid":"22482621","full_name":"tc39/proposal-exponentiation-operator","owner":"tc39","description":"Progress tracking for ES7 exponentiation operator","archived":true,"fork":false,"pushed_at":"2022-01-24T19:09:39.000Z","size":74,"stargazers_count":91,"open_issues_count":0,"forks_count":19,"subscribers_count":12,"default_branch":"main","last_synced_at":"2024-04-23T11:11:36.871Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tc39.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-31T19:51:00.000Z","updated_at":"2024-02-14T15:51:12.000Z","dependencies_parsed_at":"2022-08-01T04:08:01.374Z","dependency_job_id":null,"html_url":"https://github.com/tc39/proposal-exponentiation-operator","commit_stats":null,"previous_names":["rwaldron/exponentiation-operator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tc39%2Fproposal-exponentiation-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tc39%2Fproposal-exponentiation-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tc39%2Fproposal-exponentiation-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tc39%2Fproposal-exponentiation-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tc39","download_url":"https://codeload.github.com/tc39/proposal-exponentiation-operator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247142051,"owners_count":20890652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-04T08:01:17.288Z","updated_at":"2025-04-04T08:01:37.457Z","avatar_url":"https://github.com/tc39.png","language":"HTML","readme":"# Exponentiation Operator\n\n[Specification](https://tc39.es/ecma262/#sec-exp-operator)\n\n## Status\n\n**Stage 4**\n\nImplementation Progress\n  - Traceur\n  - Babel\n  - V8 (https://code.google.com/p/v8/issues/detail?id=3915)\n  - SpiderMonkey (https://bugzilla.mozilla.org/show_bug.cgi?id=1135708)\n\n## Authors\n\n- Rick Waldron\n- Claude Pache\n- Brendan Eich \n\n## Reviewers\n\n- Brian Terlson\n- Erik Arvidsson\n- Dmitry Lomov\n- Cait Potter\n- Jason Orendorff\n- Waldemar Horwat\n\n\n\n\n## Informative\n\n- Commonly used in mathematics, physics and robotics.\n- [Infix notation](http://en.wikipedia.org/wiki/Infix_notation) is more succinct than function notation, which makes it more preferable\n\n#### Prior Art\n\n- Python\n  - `math.pow(x, y)`\n  - `x ** y`\n- CoffeeScript\n  - `x ** y`\n- F#\n  - `x ** y`\n- Ruby\n  - `x ** y`\n- Perl\n  - `x ** y`\n- Lua, Basic, MATLAB, etc.\n  - `x ^ y`\n\n\n#### Usage\n\n\n```js\n// x ** y\n\nlet squared = 2 ** 2;\n// same as: 2 * 2\n\nlet cubed = 2 ** 3;\n// same as: 2 * 2 * 2\n\n```\n\n```js\n// x **= y\n\nlet a = 2;\na **= 2;\n// same as: a = a * a;\n\n\n\nlet b = 3;\nb **= 3;\n// same as: b = b * b * b;\n\n```\n\n\n\n#### Render Spec\n\n```\necmarkup spec/index.html index.html\n```\n","funding_links":[],"categories":["Supported Language Features and Polyfills","Supported Browsers"],"sub_categories":["`npm run eject`","Supported Language Features"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frwaldron%2Fexponentiation-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frwaldron%2Fexponentiation-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frwaldron%2Fexponentiation-operator/lists"}