-
Updated
Nov 12, 2020 - JavaScript
JavaScript

JavaScript (JS) is a lightweight interpreted or JIT-compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.
Here are 184,667 public repositories matching this topic...
The crash is likely being caused by some third party code (possibly a browser extension) injecting a partial DevTools hook into the page. (See below comments for more information.)
We can't prevent this but Fast Refresh could more gracefully handle this case by checking to see if window. __REACT_DEVTOOLS_GLOBAL_HOOK__.isDisabled
is true ([like we do here](https://github.com/facebook/react/b
-
Updated
Nov 12, 2020 - JavaScript
-
Updated
Oct 25, 2020
-
Updated
Nov 12, 2020 - JavaScript
In the German translation of electron/docs/tutorial/quick-start.md
, the command node -v
was incorrectly translated as knode -v
.
-
Updated
Nov 2, 2020 - JavaScript
-
Updated
Nov 12, 2020 - JavaScript
In AbortController/AbortSignal
it is possible to construct an AbortSignal
without a controller (but shouldn't be):
> var c = new AbortController();
> new c.signal.constructor()
AbortSignal { aborted: false }
Correct behavior:
> var c = new AbortController();
new c.signal.constructor()
TypeError: Illegal Constructor
This should be a relatively simple fix b
-
Updated
Sep 4, 2020
-
Updated
Nov 12, 2020 - TypeScript
TypeScript Version: 4.1.0-beta
Search Terms: string.replace
Code
const str ='apple apple';
console.log(str.replace('apple','oranges'));
Expected behavior: It should replace all occurrences of 'apple'
Actual behavior: It is replacing only the first occurrence of 'apple'.
Either correct the IntelliSense doc or fix the replace function. Please find t
-
Updated
Nov 3, 2020 - JavaScript
-
Updated
Nov 12, 2020 - JavaScript
'View the source on Github' links not working in AppBar Documentation
- The issue is present in the lates
-
Updated
Nov 12, 2020 - JavaScript
Is your feature request related to a problem? Please describe
In my component's props TS interface, I can use JSDoc comments to set the description, and can even use the @default
tag to describe the default value
However, nothing happens when I use the @deprecated
tag.
Describe the solution you'd like
Some ideas:
- It would be nice i
-
Updated
Nov 5, 2020 - JavaScript
-
Updated
Nov 12, 2020 - JavaScript
-
Updated
Nov 2, 2020 - JavaScript
-
Updated
Nov 12, 2020 - Vue
-
Updated
Nov 9, 2020 - JavaScript
-
Updated
Nov 5, 2020 - JavaScript
-
Updated
Oct 3, 2020
-
Updated
Nov 12, 2020 - TypeScript
I have been having conflict issues with incompatible versions of google plugins, and have pulled together as much information as I can find, I have removed the gradle plugin from pre Cordova 9
cordova-android-support-gradle-release@3.0.1 - removed now included in Cordova 9.+
and have added to mobile-config.js
App.setPreference('AndroidXEnabled', 'true', 'android');
App.setPreference('Gra
-
Updated
Oct 18, 2020 - JavaScript
Created by Brendan Eich
Released December 4, 1995
- Website
- developer.mozilla.org/en-US/docs/Web/JavaScript
- Wikipedia
- Wikipedia
What problem does this feature solve?
It would allow us to use numbers which is larger than MAX_SAFE_INTEGER.
What does the proposed API look like?
In HTML,
{{BigInt("100")}}
,{{100n}}
,{{2n * 50n}}
or{{50n + 50n}}
should show "100" (it can be just simply string by using .toString()) at frontend.At the moment using BigInt in "Mustache" syntax just throw error.
Sure, backu