프로그램 개발 방법론인 프로그래밍 패러다임에 대하여 !!
먼저 프로그래밍 패러다임은 다음과 같이 구분할 수 있다.
이 구분을 보고 헤매던 중 기본을 딱 이해할 수 있었다
function spaceToHeart(text){
return text.replaceAll(" ", "♡");
}
body{
background-color:red;
}
function spaceToHeart(text){
let result = "";
for (let i =0; i< text.leneght; i++){
if (text[i] == " "){
result += "♡";
} else {
result += text[i];
}
}
return result;
}
const li = [1,2,3,4,5,9,99]
let a = 0
for (let i =0 , i < le.length; i++){
a = Math.max(li[i], a)
}
console.log(a) // 99
function Person(name){
this.name = name;
this.getName = function(name){
return this.name ;
}
}
var me = new Person("yeeej");
console.log(me.getName()); // yeeej
참고하면 좋은 자료들
면접을 위한 CS전공지식 노트
객체지향, 아는 개념도 정리 안하면 당황합니다!
PoiemaWeb
majaeh43님 벨로그
드림코딩 유튜브 - 함수형프로그래밍이 대세다?! (함수형 vs 객체지향)
노마드코더 유튜브 - 연봉이 떡상한다고? 함수형 프로그래밍! 10분만에 이해하기.