var str = 'hello, world!';
var strArr = str.split(','); // 특정 값을 기준으로 문자열을 나누어 배열로 재생성
console.log(strArr); //strArr = ['hello', ' world!'];
var arr = ['My', 'name', 'is', 'SeHee', ', Kim'];
var str = arr.join(' '); // 특정 값을 기준으로 배열을 문자열로 재생성
console.log(str); // str = My name is SeHee ,Kim;
var arr = [1,2,3,4];
arr.reverse();
console.log(arr); // [4,3,2,1]
let test = "45.5";
test = Number(test);
console.log(typeof test);// number
console.log(parseInt(test));// 45
console.log(parseFloat(test));// 45.5
var num = 15;
console.log(typeof String(num)); // string
// string 일반 문자열 변환
console.log(num.toString()); // 15
console.log(num.toString(2)); // 1111
console.log(num.toString(8)); // 17
console.log(num.toString(16)); // f
// toString 진수에 따른 변환
var test = ["a", "h", "f", "e", "g"];
test.push("el");
console.log(test); //[ 'a', 'h', 'f', 'e', 'g', 'el' ]
test.unshift("el");
console.log(test); //[ 'el', 'a', 'h', 'f', 'e', 'g', 'el']
test.pop();
console.log(test); //[ 'el', 'a', 'h', 'f', 'e', 'g' ]
test.shift();
console.log(test); //[ 'a', 'h', 'f', 'e', 'g' ]
사용자가 어떤 주소로 들어왔을 때 그 주소에 해당하는 적당한 페이지를 사용자에게 보내주는 것
URL에 따라서 적당한 콘텐츠를 전송해주는 것을 Routing이라고 합니다.
background: radial-gradient(
circle at 30% 107%,
#fdf497 0%,
#fdf497 5%,
#fd5949 45%,
#d6249f 60%
);
&::-webkit-scrollbar {
width: 6px;
&-thumb {
background: lightgray;
border-radius: 5px;
}
p {
margin: 5px auto;
width: 160px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-weight: bold;
}
{
"workbench.colorTheme": "Material Theme Darker",
"workbench.iconTheme": "material-icon-theme",
"editor.formatOnSave": true,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"editor.renameOnType": true,
"launch": {
"configurations": [],
"compounds": []
},
"editor.tokenColorCustomizations": {
"comments": "#2EDB93"
},
"json.schemas": [],
"editor.semanticTokenColorCustomizations": null,
"window.zoomLevel": -1,
"liveshare.connectionMode": "relay",
"editor.tabSize": 2,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.wordWrap": "on",
"editor.fontFamily": "JetBrains Mono"
// "editor.tokenColorCustomizations": {
// "comments": "#FFC2C2"
// }
}
"powermode.enabled": true,
"powermode.enableShake": false,
"powermode.backgroundMode": "image",
"powermode.maxExplosions": 1,
"powermode.explosionSize": 30,
"powermode.customCss": {
"top": "-90px"
},
"powermode.customExplosions": [요기다가 변환한 코드입력],
와..! 꿀팁 배워가요 병진님 👍🏻👍🏻👍🏻