├── .codeclimate.yml ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── discussion.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .mdlrc ├── .mdlrc.style.rb ├── .npmignore ├── .travis.yml ├── .travis └── push.sh ├── CODE_OF_CONDUCT.md ├── COLLABORATING.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── advanced.svg ├── deploy-gh-pages.sh ├── dist ├── _30s.es5.js ├── _30s.es5.min.js ├── _30s.esm.js └── _30s.js ├── docs ├── CNAME ├── about.html ├── adapter.html ├── archive.html ├── array.html ├── browser.html ├── clipboard.svg ├── contributing.html ├── date.html ├── favicon.png ├── function.html ├── glossary.html ├── icons │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── code.svg │ ├── dashboard.svg │ ├── git-branch.svg │ ├── law.svg │ ├── organization.svg │ └── star.svg ├── index.html ├── logos │ ├── logo.svg │ ├── logo_128.png │ ├── logo_128_o.png │ ├── logo_128_white.png │ ├── logo_256.png │ ├── logo_256_white.png │ ├── logo_32.png │ ├── logo_32_white.png │ ├── logo_384.png │ ├── logo_384_white.png │ ├── logo_512.png │ ├── logo_512_white.png │ ├── logo_64.png │ └── logo_64_white.png ├── manifest.json ├── math.html ├── node.html ├── object.html ├── prism.js ├── scss │ └── style.scss ├── sponsors │ └── DO_Logo_icon_blue.svg ├── string.html ├── style.css ├── type.html ├── uncategorized.html └── utility.html ├── glossary ├── AJAX.md ├── API.md ├── Argument.md ├── Array.md ├── Asynchronous-programming.md ├── Automatic-semicolon-insertion.md ├── Boolean.md ├── CORS.md ├── CSS.md ├── CSV.md ├── Callback.md ├── Character-encoding.md ├── Class.md ├── Closure.md ├── CoffeeScript.md ├── Constant.md ├── Constructor.md ├── Continuous-Deployment.md ├── Continuous-Integration.md ├── Cross-site-scripting-xss.md ├── Currying.md ├── DNS.md ├── DOM.md ├── Deserialization.md ├── Domain-name-registrar.md ├── Domain-name.md ├── ES6.md ├── Element.md ├── Event-driven-programming.md ├── Event-loop.md ├── Express.md ├── Factory-functions.md ├── First-class-function.md ├── Flexbox.md ├── Function.md ├── Functional-programming.md ├── Functor.md ├── Garbage-collection.md ├── Git.md ├── HTML.md ├── HTTP-and-HTTPS.md ├── Higher-order-function.md ├── Hoisting.md ├── IP.md ├── Integer.md ├── Integration-testing.md ├── JSON.md ├── MDN.md ├── MVC.md ├── Module.md ├── MongoDB.md ├── Mutabe-value.md ├── NoSQL.md ├── Node-js.md ├── Npm.md ├── Object-oriented-programming.md ├── Object.md ├── PWA.md ├── Prepared-statements.md ├── Promise.md ├── Prototype-based-programming.md ├── Pseudo-class.md ├── Pseudo-element.md ├── README.md ├── React.md ├── Recursion.md ├── Regular-expressions.md ├── Repository.md ├── Responsive-web-design.md ├── SEO.md ├── SQL-injection.md ├── SQL.md ├── SSL.md ├── SVG.md ├── Scope.md ├── Selector.md ├── Serialization.md ├── ShadowDOM.md ├── Stream.md ├── Strict-mode.md ├── String.md ├── Template-literals.md ├── TypeScript.md ├── URI.md ├── URL.md ├── UTF-8.md ├── Unit-testing.md ├── Value-vs-reference.md ├── Variable.md ├── Viewport.md ├── Vue.md ├── WebAssembly.md ├── WebComponents.md ├── WebGL.md ├── WebRTC.md ├── WebSockets.md ├── XHTML.md ├── XML.md ├── Yarn.md ├── jQuery.md └── keyword_database ├── logo.png ├── package-lock.json ├── package.json ├── scripts ├── build.js ├── extract.js ├── glossary │ ├── keyword.js │ └── library.js ├── lint.js ├── module.js ├── tag.js ├── tdd.js ├── util.js ├── vscodegen.js └── web.js ├── snippet-template.md ├── snippet_data ├── snippetList.json └── snippets.json ├── snippets ├── CSVToArray.md ├── CSVToJSON.md ├── JSONToFile.md ├── JSONtoCSV.md ├── RGBToHex.md ├── URLJoin.md ├── UUIDGeneratorBrowser.md ├── UUIDGeneratorNode.md ├── all.md ├── allEqual.md ├── any.md ├── approximatelyEqual.md ├── arrayToCSV.md ├── arrayToHtmlList.md ├── ary.md ├── atob.md ├── attempt.md ├── average.md ├── averageBy.md ├── bifurcate.md ├── bifurcateBy.md ├── bind.md ├── bindAll.md ├── bindKey.md ├── binomialCoefficient.md ├── bottomVisible.md ├── btoa.md ├── byteSize.md ├── call.md ├── capitalize.md ├── capitalizeEveryWord.md ├── castArray.md ├── chainAsync.md ├── checkProp.md ├── chunk.md ├── clampNumber.md ├── cloneRegExp.md ├── coalesce.md ├── coalesceFactory.md ├── collectInto.md ├── colorize.md ├── compact.md ├── compactWhitespace.md ├── compose.md ├── composeRight.md ├── converge.md ├── copyToClipboard.md ├── countBy.md ├── countOccurrences.md ├── counter.md ├── createDirIfNotExists.md ├── createElement.md ├── createEventHub.md ├── currentURL.md ├── curry.md ├── dayOfYear.md ├── debounce.md ├── decapitalize.md ├── deepClone.md ├── deepFlatten.md ├── deepFreeze.md ├── deepGet.md ├── deepMapKeys.md ├── defaults.md ├── defer.md ├── degreesToRads.md ├── delay.md ├── detectDeviceType.md ├── difference.md ├── differenceBy.md ├── differenceWith.md ├── dig.md ├── digitize.md ├── distance.md ├── drop.md ├── dropRight.md ├── dropRightWhile.md ├── dropWhile.md ├── elementContains.md ├── elementIsVisibleInViewport.md ├── elo.md ├── equals.md ├── escapeHTML.md ├── escapeRegExp.md ├── everyNth.md ├── extendHex.md ├── factorial.md ├── fibonacci.md ├── filterFalsy.md ├── filterNonUnique.md ├── filterNonUniqueBy.md ├── findKey.md ├── findLast.md ├── findLastIndex.md ├── findLastKey.md ├── flatten.md ├── flattenObject.md ├── flip.md ├── forEachRight.md ├── forOwn.md ├── forOwnRight.md ├── formToObject.md ├── formatDuration.md ├── fromCamelCase.md ├── functionName.md ├── functions.md ├── gcd.md ├── geometricProgression.md ├── get.md ├── getColonTimeFromDate.md ├── getDaysDiffBetweenDates.md ├── getImages.md ├── getMeridiemSuffixOfInteger.md ├── getScrollPosition.md ├── getStyle.md ├── getType.md ├── getURLParameters.md ├── groupBy.md ├── hammingDistance.md ├── hasClass.md ├── hasFlags.md ├── hashBrowser.md ├── hashNode.md ├── head.md ├── hexToRGB.md ├── hide.md ├── httpGet.md ├── httpPost.md ├── httpsRedirect.md ├── hz.md ├── inRange.md ├── indentString.md ├── indexOfAll.md ├── initial.md ├── initialize2DArray.md ├── initializeArrayWithRange.md ├── initializeArrayWithRangeRight.md ├── initializeArrayWithValues.md ├── initializeNDArray.md ├── insertAfter.md ├── insertBefore.md ├── intersection.md ├── intersectionBy.md ├── intersectionWith.md ├── invertKeyValues.md ├── is.md ├── isAbsoluteURL.md ├── isAfterDate.md ├── isAnagram.md ├── isArrayLike.md ├── isBeforeDate.md ├── isBoolean.md ├── isBrowser.md ├── isBrowserTabFocused.md ├── isDivisible.md ├── isDuplexStream.md ├── isEmpty.md ├── isEven.md ├── isFunction.md ├── isLowerCase.md ├── isNegativeZero.md ├── isNil.md ├── isNull.md ├── isNumber.md ├── isObject.md ├── isObjectLike.md ├── isPlainObject.md ├── isPrime.md ├── isPrimitive.md ├── isPromiseLike.md ├── isReadableStream.md ├── isSameDate.md ├── isSorted.md ├── isStream.md ├── isString.md ├── isSymbol.md ├── isTravisCI.md ├── isUndefined.md ├── isUpperCase.md ├── isValidJSON.md ├── isWeekday.md ├── isWeekend.md ├── isWritableStream.md ├── join.md ├── last.md ├── lcm.md ├── longestItem.md ├── lowercaseKeys.md ├── luhnCheck.md ├── mapKeys.md ├── mapNumRange.md ├── mapObject.md ├── mapString.md ├── mapValues.md ├── mask.md ├── matches.md ├── matchesWith.md ├── maxBy.md ├── maxDate.md ├── maxN.md ├── median.md ├── memoize.md ├── merge.md ├── midpoint.md ├── minBy.md ├── minDate.md ├── minN.md ├── mostPerformant.md ├── negate.md ├── nest.md ├── nodeListToArray.md ├── none.md ├── nthArg.md ├── nthElement.md ├── objectFromPairs.md ├── objectToPairs.md ├── observeMutations.md ├── off.md ├── offset.md ├── omit.md ├── omitBy.md ├── on.md ├── onUserInputChange.md ├── once.md ├── orderBy.md ├── over.md ├── overArgs.md ├── pad.md ├── palindrome.md ├── parseCookie.md ├── partial.md ├── partialRight.md ├── partition.md ├── percentile.md ├── permutations.md ├── pick.md ├── pickBy.md ├── pipeAsyncFunctions.md ├── pipeFunctions.md ├── pluralize.md ├── powerset.md ├── prefix.md ├── prettyBytes.md ├── primes.md ├── promisify.md ├── pull.md ├── pullAtIndex.md ├── pullAtValue.md ├── pullBy.md ├── radsToDegrees.md ├── randomHexColorCode.md ├── randomIntArrayInRange.md ├── randomIntegerInRange.md ├── randomNumberInRange.md ├── readFileLines.md ├── rearg.md ├── recordAnimationFrames.md ├── redirect.md ├── reduceSuccessive.md ├── reduceWhich.md ├── reducedFilter.md ├── reject.md ├── remove.md ├── removeNonASCII.md ├── renameKeys.md ├── reverseString.md ├── round.md ├── runAsync.md ├── runPromisesInSeries.md ├── sample.md ├── sampleSize.md ├── scrollToTop.md ├── sdbm.md ├── serializeCookie.md ├── serializeForm.md ├── setStyle.md ├── shallowClone.md ├── shank.md ├── show.md ├── shuffle.md ├── similarity.md ├── size.md ├── sleep.md ├── smoothScroll.md ├── sortCharactersInString.md ├── sortedIndex.md ├── sortedIndexBy.md ├── sortedLastIndex.md ├── sortedLastIndexBy.md ├── splitLines.md ├── spreadOver.md ├── stableSort.md ├── standardDeviation.md ├── stringPermutations.md ├── stripHTMLTags.md ├── sum.md ├── sumBy.md ├── sumPower.md ├── symmetricDifference.md ├── symmetricDifferenceBy.md ├── symmetricDifferenceWith.md ├── tail.md ├── take.md ├── takeRight.md ├── takeRightWhile.md ├── takeWhile.md ├── throttle.md ├── timeTaken.md ├── times.md ├── toCamelCase.md ├── toCurrency.md ├── toDecimalMark.md ├── toHash.md ├── toKebabCase.md ├── toOrdinalSuffix.md ├── toSafeInteger.md ├── toSnakeCase.md ├── toTitleCase.md ├── toggleClass.md ├── tomorrow.md ├── transform.md ├── triggerEvent.md ├── truncateString.md ├── truthCheckCollection.md ├── unary.md ├── uncurry.md ├── unescapeHTML.md ├── unflattenObject.md ├── unfold.md ├── union.md ├── unionBy.md ├── unionWith.md ├── uniqueElements.md ├── uniqueElementsBy.md ├── uniqueElementsByRight.md ├── uniqueSymmetricDifference.md ├── untildify.md ├── unzip.md ├── unzipWith.md ├── validateNumber.md ├── vectorDistance.md ├── when.md ├── without.md ├── words.md ├── xProd.md ├── yesNo.md ├── yesterday.md ├── zip.md ├── zipObject.md └── zipWith.md ├── snippets_archive ├── JSONToDate.md ├── README.md ├── binarySearch.md ├── celsiusToFahrenheit.md ├── cleanObj.md ├── collatz.md ├── countVowels.md ├── factors.md ├── fahrenheitToCelsius.md ├── fibonacciCountUntilNum.md ├── fibonacciUntilNum.md ├── heronArea.md ├── howManyTimes.md ├── httpDelete.md ├── httpPut.md ├── isArmstrongNumber.md ├── isSimilar.md ├── kmphToMph.md ├── levenshteinDistance.md ├── mphToKmph.md ├── pipeLog.md ├── quickSort.md ├── removeVowels.md ├── solveRPN.md ├── speechSynthesis.md └── squareSum.md ├── sponsored_by_DigitalOcean.png ├── static-parts ├── README-end.md ├── README-start.md ├── about.html ├── array.html ├── beginner-page-end.html ├── beginner-page-start.html ├── contributing.html ├── page-end.html ├── page-start.html ├── static-page-end.html └── static-page-start.html ├── tag_database ├── test ├── CSVToArray.test.js ├── CSVToJSON.test.js ├── JSONToDate.test.js ├── JSONToFile.test.js ├── JSONtoCSV.test.js ├── RGBToHex.test.js ├── URLJoin.test.js ├── UUIDGeneratorBrowser.test.js ├── UUIDGeneratorNode.test.js ├── _30s.js ├── all.test.js ├── allEqual.test.js ├── any.test.js ├── approximatelyEqual.test.js ├── arrayToCSV.test.js ├── arrayToHtmlList.test.js ├── ary.test.js ├── atob.test.js ├── attempt.test.js ├── average.test.js ├── averageBy.test.js ├── bifurcate.test.js ├── bifurcateBy.test.js ├── binarySearch.test.js ├── bind.test.js ├── bindAll.test.js ├── bindKey.test.js ├── binomialCoefficient.test.js ├── bottomVisible.test.js ├── btoa.test.js ├── byteSize.test.js ├── call.test.js ├── capitalize.test.js ├── capitalizeEveryWord.test.js ├── castArray.test.js ├── celsiusToFahrenheit.test.js ├── chainAsync.test.js ├── checkProp.test.js ├── chunk.test.js ├── clampNumber.test.js ├── cleanObj.test.js ├── cloneRegExp.test.js ├── coalesce.test.js ├── coalesceFactory.test.js ├── collatz.test.js ├── collectInto.test.js ├── colorize.test.js ├── compact.test.js ├── compactWhitespace.test.js ├── compose.test.js ├── composeRight.test.js ├── converge.test.js ├── copyToClipboard.test.js ├── countBy.test.js ├── countOccurrences.test.js ├── countVowels.test.js ├── counter.test.js ├── createDirIfNotExists.test.js ├── createElement.test.js ├── createEventHub.test.js ├── currentURL.test.js ├── curry.test.js ├── dayOfYear.test.js ├── debounce.test.js ├── decapitalize.test.js ├── deepClone.test.js ├── deepFlatten.test.js ├── deepFreeze.test.js ├── deepGet.test.js ├── deepMapKeys.test.js ├── defaults.test.js ├── defer.test.js ├── degreesToRads.test.js ├── delay.test.js ├── detectDeviceType.test.js ├── difference.test.js ├── differenceBy.test.js ├── differenceWith.test.js ├── dig.test.js ├── digitize.test.js ├── distance.test.js ├── drop.test.js ├── dropRight.test.js ├── dropRightWhile.test.js ├── dropWhile.test.js ├── elementContains.test.js ├── elementIsVisibleInViewport.test.js ├── elo.test.js ├── equals.test.js ├── escapeHTML.test.js ├── escapeRegExp.test.js ├── everyNth.test.js ├── extendHex.test.js ├── factorial.test.js ├── factors.test.js ├── fahrenheitToCelsius.test.js ├── fibonacci.test.js ├── fibonacciCountUntilNum.test.js ├── fibonacciUntilNum.test.js ├── filterFalsy.test.js ├── filterNonUnique.test.js ├── filterNonUniqueBy.test.js ├── findKey.test.js ├── findLast.test.js ├── findLastIndex.test.js ├── findLastKey.test.js ├── flatten.test.js ├── flattenObject.test.js ├── flip.test.js ├── forEachRight.test.js ├── forOwn.test.js ├── forOwnRight.test.js ├── formToObject.test.js ├── formatDuration.test.js ├── fromCamelCase.test.js ├── functionName.test.js ├── functions.test.js ├── gcd.test.js ├── geometricProgression.test.js ├── get.test.js ├── getColonTimeFromDate.test.js ├── getDaysDiffBetweenDates.test.js ├── getImages.test.js ├── getMeridiemSuffixOfInteger.test.js ├── getScrollPosition.test.js ├── getStyle.test.js ├── getType.test.js ├── getURLParameters.test.js ├── groupBy.test.js ├── hammingDistance.test.js ├── hasClass.test.js ├── hasFlags.test.js ├── hashBrowser.test.js ├── hashNode.test.js ├── head.test.js ├── heronArea.test.js ├── hexToRGB.test.js ├── hide.test.js ├── howManyTimes.test.js ├── httpDelete.test.js ├── httpGet.test.js ├── httpPost.test.js ├── httpPut.test.js ├── httpsRedirect.test.js ├── hz.test.js ├── inRange.test.js ├── indentString.test.js ├── indexOfAll.test.js ├── initial.test.js ├── initialize2DArray.test.js ├── initializeArrayWithRange.test.js ├── initializeArrayWithRangeRight.test.js ├── initializeArrayWithValues.test.js ├── initializeNDArray.test.js ├── insertAfter.test.js ├── insertBefore.test.js ├── intersection.test.js ├── intersectionBy.test.js ├── intersectionWith.test.js ├── invertKeyValues.test.js ├── is.test.js ├── isAbsoluteURL.test.js ├── isAfterDate.test.js ├── isAnagram.test.js ├── isArmstrongNumber.test.js ├── isArrayLike.test.js ├── isBeforeDate.test.js ├── isBoolean.test.js ├── isBrowser.test.js ├── isBrowserTabFocused.test.js ├── isDivisible.test.js ├── isDuplexStream.test.js ├── isEmpty.test.js ├── isEven.test.js ├── isFunction.test.js ├── isLowerCase.test.js ├── isNegativeZero.test.js ├── isNil.test.js ├── isNull.test.js ├── isNumber.test.js ├── isObject.test.js ├── isObjectLike.test.js ├── isPlainObject.test.js ├── isPrime.test.js ├── isPrimitive.test.js ├── isPromiseLike.test.js ├── isReadableStream.test.js ├── isSameDate.test.js ├── isSimilar.test.js ├── isSorted.test.js ├── isStream.test.js ├── isString.test.js ├── isSymbol.test.js ├── isTravisCI.test.js ├── isUndefined.test.js ├── isUpperCase.test.js ├── isValidJSON.test.js ├── isWeekday.test.js ├── isWeekend.test.js ├── isWritableStream.test.js ├── join.test.js ├── kmphToMph.test.js ├── last.test.js ├── lcm.test.js ├── levenshteinDistance.test.js ├── longestItem.test.js ├── lowercaseKeys.test.js ├── luhnCheck.test.js ├── mapKeys.test.js ├── mapNumRange.test.js ├── mapObject.test.js ├── mapString.test.js ├── mapValues.test.js ├── mask.test.js ├── matches.test.js ├── matchesWith.test.js ├── maxBy.test.js ├── maxDate.test.js ├── maxN.test.js ├── median.test.js ├── memoize.test.js ├── merge.test.js ├── midpoint.test.js ├── minBy.test.js ├── minDate.test.js ├── minN.test.js ├── mostPerformant.test.js ├── mphToKmph.test.js ├── negate.test.js ├── nest.test.js ├── nodeListToArray.test.js ├── none.test.js ├── nthArg.test.js ├── nthElement.test.js ├── objectFromPairs.test.js ├── objectToPairs.test.js ├── observeMutations.test.js ├── off.test.js ├── offset.test.js ├── omit.test.js ├── omitBy.test.js ├── on.test.js ├── onUserInputChange.test.js ├── once.test.js ├── orderBy.test.js ├── over.test.js ├── overArgs.test.js ├── pad.test.js ├── palindrome.test.js ├── parseCookie.test.js ├── partial.test.js ├── partialRight.test.js ├── partition.test.js ├── percentile.test.js ├── permutations.test.js ├── pick.test.js ├── pickBy.test.js ├── pipeAsyncFunctions.test.js ├── pipeFunctions.test.js ├── pipeLog.test.js ├── pluralize.test.js ├── powerset.test.js ├── prefix.test.js ├── prettyBytes.test.js ├── primes.test.js ├── promisify.test.js ├── pull.test.js ├── pullAtIndex.test.js ├── pullAtValue.test.js ├── pullBy.test.js ├── quickSort.test.js ├── radsToDegrees.test.js ├── randomHexColorCode.test.js ├── randomIntArrayInRange.test.js ├── randomIntegerInRange.test.js ├── randomNumberInRange.test.js ├── readFileLines.test.js ├── rearg.test.js ├── recordAnimationFrames.test.js ├── redirect.test.js ├── reduceSuccessive.test.js ├── reduceWhich.test.js ├── reducedFilter.test.js ├── reject.test.js ├── remove.test.js ├── removeNonASCII.test.js ├── removeVowels.test.js ├── renameKeys.test.js ├── reverseString.test.js ├── round.test.js ├── runAsync.test.js ├── runPromisesInSeries.test.js ├── sample.test.js ├── sampleSize.test.js ├── scrollToTop.test.js ├── sdbm.test.js ├── serializeCookie.test.js ├── serializeForm.test.js ├── setStyle.test.js ├── shallowClone.test.js ├── shank.test.js ├── show.test.js ├── shuffle.test.js ├── similarity.test.js ├── size.test.js ├── sleep.test.js ├── smoothScroll.test.js ├── solveRPN.test.js ├── sortCharactersInString.test.js ├── sortedIndex.test.js ├── sortedIndexBy.test.js ├── sortedLastIndex.test.js ├── sortedLastIndexBy.test.js ├── speechSynthesis.test.js ├── splitLines.test.js ├── spreadOver.test.js ├── squareSum.test.js ├── stableSort.test.js ├── standardDeviation.test.js ├── stringPermutations.test.js ├── stripHTMLTags.test.js ├── sum.test.js ├── sumBy.test.js ├── sumPower.test.js ├── symmetricDifference.test.js ├── symmetricDifferenceBy.test.js ├── symmetricDifferenceWith.test.js ├── tail.test.js ├── take.test.js ├── takeRight.test.js ├── takeRightWhile.test.js ├── takeWhile.test.js ├── throttle.test.js ├── timeTaken.test.js ├── times.test.js ├── toCamelCase.test.js ├── toCurrency.test.js ├── toDecimalMark.test.js ├── toHash.test.js ├── toKebabCase.test.js ├── toOrdinalSuffix.test.js ├── toSafeInteger.test.js ├── toSnakeCase.test.js ├── toTitleCase.test.js ├── toggleClass.test.js ├── tomorrow.test.js ├── transform.test.js ├── triggerEvent.test.js ├── truncateString.test.js ├── truthCheckCollection.test.js ├── unary.test.js ├── uncurry.test.js ├── unescapeHTML.test.js ├── unflattenObject.test.js ├── unfold.test.js ├── union.test.js ├── unionBy.test.js ├── unionWith.test.js ├── uniqueElements.test.js ├── uniqueElementsBy.test.js ├── uniqueElementsByRight.test.js ├── uniqueSymmetricDifference.test.js ├── untildify.test.js ├── unzip.test.js ├── unzipWith.test.js ├── validateNumber.test.js ├── vectorDistance.test.js ├── when.test.js ├── without.test.js ├── words.test.js ├── xProd.test.js ├── yesNo.test.js ├── yesterday.test.js ├── zip.test.js ├── zipObject.test.js └── zipWith.test.js ├── travis.log ├── vscode_snippets ├── README.md └── snippets.json └── yarn.lock /.github/ISSUE_TEMPLATE/discussion.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Discussion 3 | about: Discuss something with us 4 | 5 | --- 6 | 7 | ## Description 8 | 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | ## Description 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | currentSnippet\.js 3 | *.md.temp.js 4 | .idea 5 | test.sh 6 | /*.log 7 | dist/flavor\.min\.css 8 | dist/flavor\.css 9 | test_old/ 10 | coverage/ 11 | -------------------------------------------------------------------------------- /.mdlrc.style.rb: -------------------------------------------------------------------------------- 1 | all 2 | rule 'header-style', :style => "atx" 3 | rule 'ul-style', :style => "asterisk" 4 | 5 | exclude_rule 'first-header-h1' 6 | exclude_rule 'first-line-h1' 7 | exclude_rule 'no-inline-html' 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | snippet-template.md 2 | tag_database 3 | travis.log 4 | CONTRIBUTING.md 5 | COLLABORATING.md 6 | CODE_OF_CONDUCT.md 7 | .travis.yml 8 | .mdlrc.style.rb 9 | .mdlrc 10 | .codeclimate.yml 11 | test/* 12 | glossary/* 13 | snippets/* 14 | static-parts/* 15 | snippet_data/* 16 | snippets_archive/* 17 | scripts/* 18 | locale/* 19 | coverage/* 20 | docs/* 21 | .travis/* 22 | .github/* 23 | advanced.svg 24 | package-lock.json 25 | yarn.lock 26 | advanced.svg 27 | sponsored_by_DigitalOcean.png 28 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | 30secondsofcode.org 2 | -------------------------------------------------------------------------------- /docs/clipboard.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/favicon.png -------------------------------------------------------------------------------- /docs/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/law.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/logos/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_128.png -------------------------------------------------------------------------------- /docs/logos/logo_128_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_128_o.png -------------------------------------------------------------------------------- /docs/logos/logo_128_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_128_white.png -------------------------------------------------------------------------------- /docs/logos/logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_256.png -------------------------------------------------------------------------------- /docs/logos/logo_256_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_256_white.png -------------------------------------------------------------------------------- /docs/logos/logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_32.png -------------------------------------------------------------------------------- /docs/logos/logo_32_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_32_white.png -------------------------------------------------------------------------------- /docs/logos/logo_384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_384.png -------------------------------------------------------------------------------- /docs/logos/logo_384_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_384_white.png -------------------------------------------------------------------------------- /docs/logos/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_512.png -------------------------------------------------------------------------------- /docs/logos/logo_512_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_512_white.png -------------------------------------------------------------------------------- /docs/logos/logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_64.png -------------------------------------------------------------------------------- /docs/logos/logo_64_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WYseven/30-seconds-of-code/e70ab2830c783d8387763126f8431a33a878eec6/docs/logos/logo_64_white.png -------------------------------------------------------------------------------- /glossary/AJAX.md: -------------------------------------------------------------------------------- 1 | ### AJAX 2 | 3 | Asynchronous JavaScript and XML (known as AJAX) is a term that describes a new approach to using multiple technologies together in order to enable web applications to make quick updates to the user interface without reloading the entire browser page. 4 | -------------------------------------------------------------------------------- /glossary/API.md: -------------------------------------------------------------------------------- 1 | ### API 2 | 3 | API stands for Application Programming Interface and is a set of features and rules provided by a provided by a software to enable third-party software to interact with it. 4 | The code features of a web API usually include methods, properties, events or URLs. 5 | -------------------------------------------------------------------------------- /glossary/Argument.md: -------------------------------------------------------------------------------- 1 | ### Argument 2 | 3 | An argument is a value passed as an input to a function and can be either a primitive or an object. 4 | In JavaScript, functions can also be passed as arguments to other functions. 5 | -------------------------------------------------------------------------------- /glossary/Array.md: -------------------------------------------------------------------------------- 1 | ### Array 2 | 3 | Arrays are used to store multiple values in a single variable. 4 | Arrays are ordered and each item in an array has a numeric index associated with it. 5 | JavaScript arrays are zero-indexed, meaning the first element's index is 0. 6 | -------------------------------------------------------------------------------- /glossary/Asynchronous-programming.md: -------------------------------------------------------------------------------- 1 | ### Asynchronous programming 2 | 3 | Asynchronous programming is a way to allow multiple events to trigger code without waiting for each other. 4 | The main benefits of asynchronous programming are improved application performance and responsiveness. 5 | -------------------------------------------------------------------------------- /glossary/Automatic-semicolon-insertion.md: -------------------------------------------------------------------------------- 1 | ### Automatic semicolon insertion 2 | 3 | Automatic semicolon insertion (ASI) is a JavaScript feature that allows developers to omit semicolons in their code. 4 | -------------------------------------------------------------------------------- /glossary/Boolean.md: -------------------------------------------------------------------------------- 1 | ### Boolean 2 | 3 | Booleans are one of the primitive data types in JavaScript. 4 | They represent logical data values and can only be `true` or `false`. 5 | -------------------------------------------------------------------------------- /glossary/CORS.md: -------------------------------------------------------------------------------- 1 | ### CORS 2 | 3 | Cross-Origin Resource Sharing (known as CORS) is a mechanism that uses extra HTTP headers to tell a browser to let a web application running at one domain have permission to access resources from a server at a different domain. 4 | -------------------------------------------------------------------------------- /glossary/CSS.md: -------------------------------------------------------------------------------- 1 | ### CSS 2 | 3 | CSS stands for Cascading Style Sheets and is a language used to style web pages. 4 | CSS documents are plaintext documents structured with rules, which consist of element selectors and property-value pairs that apply the styles to the specified selectors. 5 | -------------------------------------------------------------------------------- /glossary/CSV.md: -------------------------------------------------------------------------------- 1 | ### CSV 2 | 3 | CSV stands for Comma-Separated Values and is a storage format for tabular data. 4 | CSV documents are plaintext documents where each line represents a table row, with table columns separated by commas or some other delimiter (e.g. semicolons). 5 | The first line of a CSV document sometimes consists of the table column headings for the data to follow. 6 | -------------------------------------------------------------------------------- /glossary/Callback.md: -------------------------------------------------------------------------------- 1 | ### Callback 2 | 3 | A callback function, also known as a high-order function, is a function that is passed into another function as an argument, which is then executed inside the outer function. 4 | Callbacks can be synchronous or asynchronous. 5 | -------------------------------------------------------------------------------- /glossary/Character-encoding.md: -------------------------------------------------------------------------------- 1 | ### Character encoding 2 | 3 | A character encoding defines a mapping between bytes and text, specifying how the sequenece of bytes should be interpreted. 4 | Two commonly used character encodings are ASCII and UTF-8. 5 | -------------------------------------------------------------------------------- /glossary/Class.md: -------------------------------------------------------------------------------- 1 | ### Class 2 | 3 | In object-oriented programming, a class is a template definition of an object's properties and methods. 4 | -------------------------------------------------------------------------------- /glossary/Closure.md: -------------------------------------------------------------------------------- 1 | ### Closure 2 | 3 | A closure is the combination of a function and the lexical environment within which that function was declared. 4 | The closure allows a function to access the contents of that environment. 5 | -------------------------------------------------------------------------------- /glossary/CoffeeScript.md: -------------------------------------------------------------------------------- 1 | ### CoffeeScript 2 | 3 | CoffeeScript is a programming language inspired by Ruby, Python and Haskell that transpiles to JavaScript. 4 | -------------------------------------------------------------------------------- /glossary/Constant.md: -------------------------------------------------------------------------------- 1 | ### Constant 2 | 3 | A constant is a value, associated with an identifier. 4 | The value of a constant can be accessed using the identifier and cannot be altered during execution. 5 | -------------------------------------------------------------------------------- /glossary/Constructor.md: -------------------------------------------------------------------------------- 1 | ### Constructor 2 | 3 | In class-based object-oriented programming, a constructor is a special type of function called to instantiate an object. 4 | Constructors often accept arguments that are commonly used to set member properties. 5 | -------------------------------------------------------------------------------- /glossary/Continuous-Deployment.md: -------------------------------------------------------------------------------- 1 | ### Continuous Deployment 2 | 3 | Continuous Deployment follows the testing that happens during Continuous Integration and pushes changes to a staging or production system. 4 | Continuous Deployment ensures that a version of the codebase is accessible at all times. -------------------------------------------------------------------------------- /glossary/Continuous-Integration.md: -------------------------------------------------------------------------------- 1 | ### Continuous Integration 2 | 3 | Continuous Integration (CI) is the practice of testing each change done to a codebase automatically and as early as possible. 4 | Two popular CI systems that integrate with GitHub are Travis CI and Circle CI. -------------------------------------------------------------------------------- /glossary/Cross-site-scripting-xss.md: -------------------------------------------------------------------------------- 1 | ### Cross-site scripting (XSS) 2 | 3 | XSS refers to client-side code injection where the attacker injects malicious scripts into a legitimate website or web application. 4 | This is often achieved when the application does not validate user input and freely injects dynamic HTML content. 5 | -------------------------------------------------------------------------------- /glossary/Currying.md: -------------------------------------------------------------------------------- 1 | ### Currying 2 | 3 | Currying is a way of constructing functions that allows partial application of a function's arguments. 4 | Practically, this means that a function is broken down into a series of functions, each one accepting part of the arguments. 5 | -------------------------------------------------------------------------------- /glossary/DNS.md: -------------------------------------------------------------------------------- 1 | ### DNS 2 | 3 | A DNS (Domain Name System) translates domain names to the IP addresses needed to find a particular computer service on a network. 4 | -------------------------------------------------------------------------------- /glossary/DOM.md: -------------------------------------------------------------------------------- 1 | ### DOM 2 | 3 | The DOM (Document Object Model) is a cross-platform API that treats HTML and XML documents as a tree structure consisting of nodes. 4 | These nodes (such as elements and text nodes) are objects that can be programmatically manipulated and any visible changes made to them are reflected live in the document. 5 | In a browser, this API is available to JavaScript where DOM nodes can be manipulated to change their styles, contents, placement in the document, or interacted with through event listeners. 6 | -------------------------------------------------------------------------------- /glossary/Deserialization.md: -------------------------------------------------------------------------------- 1 | ### Deserialization 2 | 3 | Deserialization is the process of converting a format that has been transferred over a network and/or used for storage to an object or data structure. 4 | A common type of deserialization in JavaScript is the conversion of JSON string into an object. 5 | -------------------------------------------------------------------------------- /glossary/Domain-name-registrar.md: -------------------------------------------------------------------------------- 1 | ### Domain name registrar 2 | 3 | A domain name registrar is a company that manages the reservation of internet domain names. 4 | A domain name registrar must be approved by a general top-level domain (gTLD) registry or a country code top-level domain (ccTLD) registry. 5 | -------------------------------------------------------------------------------- /glossary/Domain-name.md: -------------------------------------------------------------------------------- 1 | ### Domain name 2 | 3 | A domain name is a website's address on the Internet, used primarily in URLs to identify the server for each webpage. 4 | A domain name consists of a hierarchical sequence of names, separated by dots and ending with an extension. 5 | -------------------------------------------------------------------------------- /glossary/ES6.md: -------------------------------------------------------------------------------- 1 | ### ES6 2 | 3 | ES6 stands for ECMAScript 6 (also known as ECMAScript 2015), a version of the ECMAScript specification that standardizes JavaScript. 4 | ES6 adds a wide variety of new features to the specification, such as classes, promises, generators and arrow functions. 5 | -------------------------------------------------------------------------------- /glossary/Element.md: -------------------------------------------------------------------------------- 1 | ### Element 2 | 3 | A JavaScript representation of a DOM element commonly returned by `document.querySelector()` and `document.createElement()`. 4 | They are used when creating content with JavaScript for display in the DOM that needs to be programatically generated. 5 | -------------------------------------------------------------------------------- /glossary/Event-driven-programming.md: -------------------------------------------------------------------------------- 1 | ### Event-driven programming 2 | 3 | Event-driven programming is a programming paradigm in which the flow of the program is determined by events (e.g. user actions, thread messages, sensor outputs). 4 | In event-driven applications, there is usually a main loop that listens for events and trigger callback functions accordingly when one of these events is detected. 5 | -------------------------------------------------------------------------------- /glossary/Event-loop.md: -------------------------------------------------------------------------------- 1 | ### Event loop 2 | 3 | The event loop handles all asynchronous callbacks. 4 | Callbacks are queued in a loop, while other code runs, and will run one by one when the response for each one has been received. 5 | The event loop allows JavaScript to perform non-blocking I/O operations, despite the fact that JavaScript is single-threaded. 6 | -------------------------------------------------------------------------------- /glossary/Express.md: -------------------------------------------------------------------------------- 1 | ### Express 2 | 3 | Express is a backend framework, that provides a layer of fundamental web application features for Node.js. 4 | Some of its key features are routing, middleware, template engines and error handling. 5 | -------------------------------------------------------------------------------- /glossary/Factory-functions.md: -------------------------------------------------------------------------------- 1 | ### Factory functions 2 | 3 | In JavaScript, a factory function is any function, which is not a class or constructor, that returns a new object. 4 | Factory functions don't require the use of the `new` keyword. 5 | -------------------------------------------------------------------------------- /glossary/First-class-function.md: -------------------------------------------------------------------------------- 1 | ### First-class function 2 | 3 | A programming language is said to have first-class functions if it treats them as first-class citizens, meaning they can be passed as arguments, be returned as values from other functions, be assigned to variables and stored in data structures. -------------------------------------------------------------------------------- /glossary/Flexbox.md: -------------------------------------------------------------------------------- 1 | ### Flexbox 2 | 3 | Flexbox is a one-dimensional layout model used to style websites as a property that could advance space distribution between items and provide powerful alignment capabilities. 4 | -------------------------------------------------------------------------------- /glossary/Function.md: -------------------------------------------------------------------------------- 1 | ### Function 2 | 3 | Functions are self-contained blocks of code with their own scope, that can be called by other code and are usually associated with a unique identifier. 4 | Functions accept input in the form of arguments and can optionally return an output (if no `return` statement is present, the default value of `undefined` will be returned instead). 5 | JavaScript functions are also objects. 6 | -------------------------------------------------------------------------------- /glossary/Functional-programming.md: -------------------------------------------------------------------------------- 1 | ### Functional programming 2 | 3 | Functional programming is a paradigm in which programs are built in a declarative manner using pure functions that avoid shared state and mutable data. 4 | Functions that always return the same value for the same input and don't produce side effects are the pillar of functional programming. 5 | -------------------------------------------------------------------------------- /glossary/Functor.md: -------------------------------------------------------------------------------- 1 | ### Functor 2 | 3 | A Functor is a data type common in functional programming that implements a `map` method. 4 | The `map` method takes a function and applies it to the data in the Functor, returning a new instance of the Functor with the result. 5 | JavaScript `Array`s are an example of the Functor data type. 6 | -------------------------------------------------------------------------------- /glossary/Garbage-collection.md: -------------------------------------------------------------------------------- 1 | ### Garbage collection 2 | 3 | Garbage collection is a form of automatic memory management. 4 | It attempts to reclaim memory occupied by objects that are no longer used by the program. 5 | -------------------------------------------------------------------------------- /glossary/Git.md: -------------------------------------------------------------------------------- 1 | ### Git 2 | 3 | Git is an open-source version control system, used for source code management. 4 | Git allows users to copy (clone) and edit code on their local machines, before merging it into the main code base (master repository). 5 | -------------------------------------------------------------------------------- /glossary/HTML.md: -------------------------------------------------------------------------------- 1 | ### HTML 2 | 3 | HTML stands for HyperText Markup Language and is a language used to structure web pages. 4 | HTML documents are plaintext documents structured with elements, which are surrounded by `<>` tags and optionally extended with attributes. 5 | -------------------------------------------------------------------------------- /glossary/HTTP-and-HTTPS.md: -------------------------------------------------------------------------------- 1 | ### HTTP and HTTPS 2 | 3 | The HyperText Transfer Protocol (HTTP) is the underlying network protocol that enables transfer of hypermedia documents on the Web, usually between a client and a server. 4 | The HyperText Transfer Protocol Secure (HTTPS) is an encrypted version of the HTTP protocol, that uses SSL to encrypt all data transferred between a client and a server. 5 | -------------------------------------------------------------------------------- /glossary/Higher-order-function.md: -------------------------------------------------------------------------------- 1 | ### Higher-order function 2 | 3 | Higher-order functions are functions that either take other functions as arguments, return a function as a result, or both. 4 | -------------------------------------------------------------------------------- /glossary/Hoisting.md: -------------------------------------------------------------------------------- 1 | ### Hoisting 2 | 3 | Hoisting is JavaScript's default behavior of adding declarations to memory during the compile phase. 4 | Hoisting allows for JavaScript variables to be used before the line they were declared on. 5 | -------------------------------------------------------------------------------- /glossary/IP.md: -------------------------------------------------------------------------------- 1 | ### IP 2 | 3 | An IP address is a number assigned to a device connected to a network that uses the Internet protocol. 4 | Two IP versions are currently in use - IPv4, the older version of the communication protocol (e.g. 192.168.1.100) and IPv6, the newest version of the communication protocol which allows for many different IP addresses (e.g. 0:0:0:0:ffff:c0a8:164). 5 | -------------------------------------------------------------------------------- /glossary/Integer.md: -------------------------------------------------------------------------------- 1 | ### Integer 2 | 3 | Integers are one of the primitive data types in Javascript. 4 | They represent a numerical value that has no fractional component. 5 | -------------------------------------------------------------------------------- /glossary/Integration-testing.md: -------------------------------------------------------------------------------- 1 | ### Integration testing 2 | 3 | Integration testing is a type of software testing, used to test groups of units/components of a software. 4 | The purpose of integration tests are to validate that the units/components interact with each other as expected. 5 | -------------------------------------------------------------------------------- /glossary/JSON.md: -------------------------------------------------------------------------------- 1 | ### JSON 2 | 3 | JSON (JavaScript Object Notation) is a format for storing and exchanging data. 4 | It closely resembles the JavaScript object syntax, however some data types, such as dates and functions, cannot be natively represented and need to be serialized first. 5 | -------------------------------------------------------------------------------- /glossary/MDN.md: -------------------------------------------------------------------------------- 1 | ### MDN 2 | 3 | MDN Web Docs, formerly known as Mozilla Developer Network, is the official Mozilla website for development documentation of web standards and Mozilla projects. 4 | -------------------------------------------------------------------------------- /glossary/MVC.md: -------------------------------------------------------------------------------- 1 | ### MVC 2 | 3 | MVC stands for Model-View-Controller and is a software design pattern, emphasizing separation of concerns (logic and display). 4 | The Model part of the MVC pattern refers to the data and business logic, the View handles the layout and display, while the Controller routes commands to the model and view parts. 5 | -------------------------------------------------------------------------------- /glossary/Module.md: -------------------------------------------------------------------------------- 1 | ### Module 2 | 3 | Modules are independent, self-contained pieces of code that can be incorporated into other pieces of code. 4 | Modules improve maintainability and reusability of the code. 5 | -------------------------------------------------------------------------------- /glossary/MongoDB.md: -------------------------------------------------------------------------------- 1 | ### MongoDB 2 | 3 | MongoDB is a NoSQL database model that stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time 4 | -------------------------------------------------------------------------------- /glossary/Mutabe-value.md: -------------------------------------------------------------------------------- 1 | ### Mutable value 2 | 3 | Mutable value is a type of variable that can be changed once created. 4 | Objects are mutable as their state can be modified after they are created. 5 | Primitive values are not mutable as we perform reassignment once we change them. 6 | -------------------------------------------------------------------------------- /glossary/NoSQL.md: -------------------------------------------------------------------------------- 1 | ### NoSQL 2 | 3 | NoSQL databases provide a mechanism to create, update, retrieve and calculate data that is stored in models that are non-tabular. -------------------------------------------------------------------------------- /glossary/Node-js.md: -------------------------------------------------------------------------------- 1 | ### Node.js 2 | 3 | Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. 4 | Node.js can execute JavaScript code outside of the browser and can be used to develop web backends or standalone applications. 5 | -------------------------------------------------------------------------------- /glossary/Npm.md: -------------------------------------------------------------------------------- 1 | ### Npm 2 | 3 | Npm is a package manager for the JavaScript programming language and the default package manager for Node.js. 4 | It consists of a command-line client and the npm registry, an online database of packages. 5 | -------------------------------------------------------------------------------- /glossary/Object-oriented-programming.md: -------------------------------------------------------------------------------- 1 | ### Object-oriented programming 2 | 3 | Object-oriented programming (OOP) is a programming paradigm based on the concept of objects, which may contain both data and procedures which can be use to operate on them. 4 | JavaScript supports Object-oriented programming both via prototypes and classes. 5 | -------------------------------------------------------------------------------- /glossary/Object.md: -------------------------------------------------------------------------------- 1 | ### Object 2 | 3 | Objects are data structures that contain data and instructions for working with the data. 4 | Objects consist of key-value pairs, where the keys are alphanumeric identifiers and the values can either be primitives or objects. 5 | JavaScript functions are also objects. 6 | -------------------------------------------------------------------------------- /glossary/PWA.md: -------------------------------------------------------------------------------- 1 | ### PWA 2 | 3 | Progressive Web App (known as PWA) is a term used to describe web applications that load like regular websites but can offer the user functionality such as working offline, push notifications, and device hardware access that were traditionally available only to native mobile applications. 4 | -------------------------------------------------------------------------------- /glossary/Prepared-statements.md: -------------------------------------------------------------------------------- 1 | ### Prepared statements 2 | 3 | In databases management systems, prepared statements are templates that can be used to execute queries with the provided values substituting the template's parameters. 4 | Prepared statements offer many benefits, such as reusability, maintainability and higher security. 5 | -------------------------------------------------------------------------------- /glossary/Promise.md: -------------------------------------------------------------------------------- 1 | ### Promise 2 | 3 | The Promise object represents the eventual completion (or failure) of an asynchronous operation, and its resulting value. 4 | A Promise can be in one of these states: pending(initial state, neither fulfilled nor rejected), fulfilled(operation completed successfully), rejected(operation failed). 5 | -------------------------------------------------------------------------------- /glossary/Prototype-based-programming.md: -------------------------------------------------------------------------------- 1 | ### Prototype-based programming 2 | 3 | Prototype-based programming is a style of object-oriented programming, where inheritance is based on object delegation, reusing objects that serve as prototypes. 4 | Prototype-based programming allows the creation of objects before defining their classes. 5 | -------------------------------------------------------------------------------- /glossary/Pseudo-class.md: -------------------------------------------------------------------------------- 1 | ### Pseudo-class 2 | 3 | In CSS, a pseudo-class is used to define a special state of an element and can be used as a selector in combination with an id, element or class selector. 4 | -------------------------------------------------------------------------------- /glossary/Pseudo-element.md: -------------------------------------------------------------------------------- 1 | ### Pseudo-element 2 | 3 | In CSS, a pseudo-element is used to style specific parts of an element and can be used as a selector in combination with an id, element or class selector. 4 | -------------------------------------------------------------------------------- /glossary/React.md: -------------------------------------------------------------------------------- 1 | ### React 2 | 3 | React is a frontend framework, that allows developers to create dynamic, component-based user interfaces. 4 | React separates view and state, utilizing a virtual DOM to update the user interface. 5 | -------------------------------------------------------------------------------- /glossary/Recursion.md: -------------------------------------------------------------------------------- 1 | ### Recursion 2 | 3 | Recursion is the repeated application of a process. 4 | In JavaScript, recursion involves functions that call themselves repeatedly until they reach a base condition. 5 | The base condition breaks out of the recursion loop because otherwise the function would call itself indefinitely. 6 | Recursion is very useful when working with nested data, especially when the nesting depth is dynamically defined or unkown. 7 | -------------------------------------------------------------------------------- /glossary/Regular-expressions.md: -------------------------------------------------------------------------------- 1 | ### Regular expressions 2 | 3 | Regular expressions (known as regex or regexp) are patterns used to match character combinations in strings. 4 | JavaScript provides a regular expression implementation through the `RegExp` object. 5 | -------------------------------------------------------------------------------- /glossary/Repository.md: -------------------------------------------------------------------------------- 1 | ### Repository 2 | 3 | In a version control system, a repository (or repo for short) is a data structure that stores metadata for a set of files (i.e. a project). 4 | -------------------------------------------------------------------------------- /glossary/Responsive-web-design.md: -------------------------------------------------------------------------------- 1 | ### Responsive web design 2 | 3 | Responsive web design is a web development concept aiming to provide optimal behavior and performance of websites on all web-enabled devices. 4 | Responsive web design is usually coupled with a mobile-first approach. 5 | -------------------------------------------------------------------------------- /glossary/SEO.md: -------------------------------------------------------------------------------- 1 | ### SEO 2 | 3 | SEO stands for Search Engine Optimization and refers to the process of improving a website's search rankings and visibility. 4 | -------------------------------------------------------------------------------- /glossary/SQL-injection.md: -------------------------------------------------------------------------------- 1 | ### SQL injection 2 | 3 | SQL injection is a code injection technique, used to attack data-driven applications. 4 | SQL injections get their name from the SQL language and mainly target data stored in relational databases. 5 | -------------------------------------------------------------------------------- /glossary/SQL.md: -------------------------------------------------------------------------------- 1 | ### SQL 2 | 3 | SQL stands for Structured Query Language and is a language used to create, update, retrieve and calculate data in table-based databases. 4 | SQL databases use a relational database model and are particularly useful in handlind structured data with relations between different entities. 5 | -------------------------------------------------------------------------------- /glossary/SSL.md: -------------------------------------------------------------------------------- 1 | ### SSL 2 | 3 | Secure Sockets Layer, commonly known as SSL or TLS, is a set of protocols and standards for transferring private data across the Internet. 4 | SSL uses a cryptographic system that uses two keys to encrypt data. 5 | -------------------------------------------------------------------------------- /glossary/SVG.md: -------------------------------------------------------------------------------- 1 | ### SVG 2 | 3 | SVG stands for Scalable Vector Graphics and is a 2D vector image format based on an XML syntax. 4 | SVG images can scale infinitely and can utilize clipping, masking, filters, animations etc. 5 | -------------------------------------------------------------------------------- /glossary/Scope.md: -------------------------------------------------------------------------------- 1 | ### Scope 2 | 3 | Each function has its own scope, and any variable declared within that function is only accessible from that function and any nested functions. 4 | -------------------------------------------------------------------------------- /glossary/Selector.md: -------------------------------------------------------------------------------- 1 | ### Selector 2 | 3 | A CSS selector is a pattern that is used to select and/or style one or more elements in a document, based on certain rules. 4 | The order in which CSS selectors apply styles to elements is based on the rules of CSS specificity. 5 | -------------------------------------------------------------------------------- /glossary/Serialization.md: -------------------------------------------------------------------------------- 1 | ### Serialization 2 | 3 | Serialization is the process of converting an object or data structure into a format suitable for transfer over a network and/or storage. 4 | A common type of serialization in JavaScript is the conversion of an object into a JSON string. 5 | -------------------------------------------------------------------------------- /glossary/ShadowDOM.md: -------------------------------------------------------------------------------- 1 | ### Shadow DOM 2 | 3 | Shadow DOM allows you to attach hidden DOM trees to elements in the normal DOM tree, which are included in the document rendering, but excluded from the main document DOM tree. 4 | A shadow DOM tree will start with a shadow root, to which you can attach any elements you want, just like in a regular DOM. 5 | Examples of shadow DOM uses are the `