Показать сообщение отдельно
  #1 (permalink)  
Старый 18.08.2018, 10:22
Кандидат Javascript-наук
Отправить личное сообщение для Retro_1477 Посмотреть профиль Найти все сообщения от Retro_1477
 
Регистрация: 14.04.2018
Сообщений: 113

Передать только значение переменной из функции
Подскажите как можно передать значение переменной из функции другой переменной.

Вот моя ситуация:
$('.selector-player').on('click', choicePlayerMod);
$('.lobby-start').on('click', startGame);

/*ВЫБОР ИГРОКА*/
	function choicePlayerMod(){
		var Mod;
	if ($('.PlayerMod').is(".user")) {
		$('.PlayerMod').empty();
		$('.PlayerMod').html('<i class="fas fa-desktop"></i>')
		.addClass('AI')
		.removeClass('user');
		return Mod=1;
	}
	else{
		$('.PlayerMod').empty();
		$('.PlayerMod').html('<i class="fas fa-user"></i>')
		.addClass('user')
		.removeClass('AI');	
		return Mod=0;
	}
	}
/*Начало игры*/
	function startGame() {
		var gameMod = choicePlayerMod();
		if (gameMod = 0) //player vs player
		{
			alert('player vs player');
		}
		if (gameMod = 1) {
			alert('player vs AI');
		}
	}
Ответить с цитированием