原代码

function checkTest() {
	if (a === b) {
		if (c === d) {
			if (x === y) {
				return 'Yes'
			}
		}
	}
}

改完后

function checkTest() {
	if (a !== b) {
		return
	}
	if (c !== d) {
		return
	}
	if (x === y) {
		return 'Yes'
	}
}