const calculate=(a, b, operator)=>{
if (operator==='+'){
return a+b;
}
if (operator==='*'){
return a*b;
}
if (operator==='-'){
return a-b
}
}
function solution(expression) {
const operatorArray = [
["+", "*", "-"],
["+", "-", "*"],
["*", "+", "-"],
["*", "-", "+"],
["-", "*", "+"],
["-", "+", "*"],
];
var answer = Number.MIN_SAFE_INTEGER;
let answerArray=[];
// 연산 모음
// 연산 모음 for문 돌리기
// 그 안에서 연산을... how...
// 연산 순서대로 for문 또 돌리고 앞뒤 계산 먼저 하기.
for (let i=0;i<operatorArray.length;i++){
const operands = expression.match(/[0-9]+/g).map(Number);
const operators = expression.match(/[\*\+\-]/g);
for (let j=0;j<operatorArray[i].length;j++){
let index=operators.indexOf(operatorArray[i][j]);
while(index!==-1){
operands[index]=calculate(operands[index], operands[index+1], operatorArray[i][j]);
operands.splice(index+1, 1);
operators.splice(index, 1);
index=operators.indexOf(operatorArray[i][j]);
}
}
if (answer<Math.abs(operands[0])){
answer=Math.abs(operands[0]);
}
}
return answer;
}
MIN_SAFE_INTEGER
static data property represents the minimum safe integer in JavaScript, or -(253 - 1). To represent integers smaller than this, consider using BigInt .