Category: JavaScript/TypeScript (6)
방문자수 0
[VSCODE] Shortcuts to automatically remove unused imports
Feb, 2025조회수 0단어수 83 Table of Contents Automatically Removing Unused Imports in VSCode Example Automatically Removing Unused Imports in VSCode When developing in JavaScript/TypeScript, if you import an object and later remove all related code, it’s best to remove the import statement as well. Instead of manu...태그#JavaScript#TypeScript#VSCode#Unused Imports#Shortcuts [JavaScript] Three ways to get the last element of an array
Feb, 2025조회수 0단어수 115 JavaScript Array Methods for Accessing the Last Element Table of Contents Access Last Element Using Array Length Retrieve Last Element Using Slice Method Retrieve Last Element Using Pop Method Performance Comparison (Chrome) 1. Access Last Element Using Array Length Retrieve the last elem...태그#JavaScript#Array Methods#Performance Comparison#Access Last Element#Slice Method#Pop Method [Javascript] Double Exclamation Operator
Feb, 2025조회수 0단어수 67 Table of Contents Traditional Method Modern Method Double Exclamation Mark (!!) in JavaScript 1. Traditional Method Declare a temporary variable, copy the value, and then swap. 2. Modern Method By using arrays and destructuring assignment, swapping can be done in a single line. 3. Doubl...태그#JavaScript#Double Exclamation Mark#Boolean Conversion [Javascript] Swapping the values of two variables
Feb, 2025조회수 0단어수 37 Table of Contents Traditional Method Modern Method 1. Traditional Method Declare a temporary variable, copy the value, and then swap. 2. Modern Method By using arrays and destructuring assignment, swapping can be done in a single line.태그#Variable Swapping#JavaScript#Traditional Method#Modern Method [Angular][Google Search Console] Redirect issue
Feb, 2025조회수 0단어수 337 Table of Contents SEO Issues with Angular and GitHub Hosting Solution (Based on Angular 19) SEO Issues with Angular and GitHub Hosting While creating a personal blog (https://hiperz.github.io) using Angular and hosting it on Github, I encountered several issues due to my lack of knowledge...태그#SEO#Angular#GitHub#Redirection Error#Lighthouse#Custom URL Serializer
